Lindeni Mahlalela
Forum Replies Created
-
Forum: Reviews
In reply to: [Who Hit The Page - Hit Counter] Immediately crashedHello @arkzero,
Would you share the name/url of the plugin incompatible with this one so that we can check and see what the conflict is.
I am sorry for any inconvenience.
Thanks,
LindeniForum: Plugins
In reply to: [Who Hit The Page - Hit Counter] No Import / Export Page.Hello Dirk,
I am sorry for such inconvenience. In the recent update, it is no longer required to ‘Import Geo Location Data’ into the database as this is now saved on a file instead and the plugin loads the data from the file. If you have done all steps in the setup guide you can simply skip the steps that says you should import the geo location data.
It is by mistake that the documentation has not been updated to reflect this change, sorry about that. The plugin should work without the need to import geo location data as it will read the data from a file instead.
I will look into the ‘Front End Widget’ Settings issue as soon as I can.
Thank you for your patience.
Lindeni
Forum: Plugins
In reply to: [Who Hit The Page - Hit Counter] Plugin not working at allHello,
Thank you for reporting this. There was supposed to be an update notice in the dashboard stating a database update is required, it seems that notice was not triggered.
I have updated the plugin to fix this issue. Please update the plugin now to the latest version. Soon after the update you should see an update notice, click the button and follow along until the notice disappears, then the update will be complete.
If you do not see the update notice, you can manually go to ‘Who Hit The Page > Settings > Tools’ and click the ‘Click here to Force Database Update’, this should copy your current data into the new database structure and then everything should be fine from here.
Please let me know if that does not help.
Thanks.
Forum: Plugins
In reply to: [Who Hit The Page - Hit Counter] Can’t activate plugin with WP 4.9.4Hello @mhartste,
I am sorry for the delayed response. Would you please share as much information as possible about the issue since I was unable to replicate. Please send screenshots with the error messages showing and I will try to assist.
You may also contact me with access to your admin dashboard and I will try to login and see what the issue. Please don’t post login details here.
Thanks
Forum: Plugins
In reply to: [Who Hit The Page - Hit Counter] How do I count the “Home” page?Hello @giovannihdgd
I hope you are doing well today, you can achieve this by adding the following code snippet on your theme’s functions.php or by creating a new PHP file and upload it to your website in wp-content/mu-plugins, this is the advisable method so create a new file maybe call it ‘count-visits-on-home-page.php’ then paste the following code:
/** * Count visits on the homepage */ if ( is_home() && is_front_page() ) { who_hit_the_page( "Home" ); }
save it and upload it to your website using FTP in the following location:
wp-content/mu-plugins/count-visits-on-home-page.php
Once you have that in place, please test and see if it works. If it does not work properly then please try to change the if (…) condition so that you have only
if (is_home()) { ...}
OR
if (is_front_page()){ ...}
I hope this helps but please let me know if you have any issues.
Thanks
Forum: Plugins
In reply to: [Who Hit The Page - Hit Counter] baaad sheeepThe latest version 1.4.5 has a lot of fixes including this one.
Forum: Plugins
In reply to: [Who Hit The Page - Hit Counter] Could not install got Error messageHello @anespa,
Thank you for trying the plugin and thank you for reporting this error.
I have fixed the error and released a new version. Please try to install the new release version and everything should work as expected.
Many thanks
Forum: Plugins
In reply to: [Who Hit The Page - Hit Counter] Upgrade triggers fatal errorHello @gyndee,
I hope you are doing great today and I thank you for reporting this error.
I have fixed the error and released a new version. Please update to the new version to get rig of this errors.
Thank you
Forum: Plugins
In reply to: [Who Hit The Page - Hit Counter] Critical error Who hit the pageHello @philipgarner and @a4jpcom,
I hope you are doing great today and thank you both for reporting this error.
I have fixed the errors and updated the plugin. Please update to the latest version and you should not have any more errors.
Thank you
Forum: Plugins
In reply to: [Who Hit The Page - Hit Counter] /wp-admin/admin.php?page=whtp-admin-menuHello @tgaguy,
I hope you are doing great today. Thank you for reporting this issue. The error has been fixed and a new version has been released.
Please update to the latest version and all should work as it should.
Thanks
Forum: Plugins
In reply to: [Who Hit The Page - Hit Counter] MySQL error on Who Hit the Page pluginHello @mhartste
I hope you are doing great today. Thank you for reporting the error.
I have removed the error and everything should be working fine now. Please update to the latest version. I am sorry for the inconvenience.
Thanks
Forum: Plugins
In reply to: [Who Hit The Page - Hit Counter] baaad sheeepHello,
Can you give me more details on how this happened. Which version of wordpress are you using?
Forum: Installing WordPress
In reply to: Multiple installations of wordpressHey Neil,
Please let me know if you have more questions about this
Forum: Installing WordPress
In reply to: Multiple installations of wordpressHi,
I think the best possible solution is to install WordPress Network, a WordPress Network will allow you to install once in one domain and will allow your six users to create their websites in this network. Here is a guide on how to create a wordpress network https://codex.www.ads-software.com/Create_A_Network. You can convert your existing WordPress install to a network.
I suspect that you may run into problems if you are using local computers alone, because there are additional steps you need to take to make your installation accessible from the 6 computers, one way to solve this is to have a public facing domain so that your trainees will access the WordPress Network on this installation.
I hope I am leading you to the right direction and hope this helps you achieve your goals.
Forum: Fixing WordPress
In reply to: Adding Plugins and HTML HelpHi,
Can you show me the code and the link to where you want to display the slideshow on your website?
There is a few things you need to consider when adding your html code for it to work properly:
1. Check the paths to your slideshows images, css and javascript to see if it is in the right place on your server, wordpress stores images and other uploads to a folder
wp-content/uploads/<year>/<month>
likewp-content/uploads/2015/12
and you will find all the images uploaded in DEcember 2015 in this folder. If you uploaded your images using the wordpress uploader, then you must use the full url to the images in this folder likehttps://domain.com/wp-content/uploads/2015/12/image-name.jpg
2. You also need to verify the paths to your .js and .css files that makes your html work. Even here, you also need to use the full URL to each of these files, otherwise if you use relative links the code will not work especially when you are viewing a page like
https://domain.com/page/
– any code referenced as/js/script.js
will not work because in a url like this it will imply you are trying to get the script located athttps://domain.com/page/js/script.js
while the script is actually located athttps://domain.com/js/script.js
orhttps://domain.com/wp-content/plugins/<plugin-name>/js/script.js
One thing I have to ask you is this: Are you using a plugin or you are uploading the scripts manually and then pasting the html directly into the page editor?
I hope this helps you and I will be happy to help you further if you need more help.