Presslabs
Forum Replies Created
-
Forum: Plugins
In reply to: [Toplytics] ConfigurationHello Gustavo, sorry for replying so late. The plugin will be updated following the next days. We will keep in mind the Google API’s interface changes during the updating process. Thank you for your feedback.
Forum: Plugins
In reply to: [Mapping of image posts] Compatible with W3 Total Cache?Hello,
Can you please tell me more details in order to find out what is wrong? Details like the version of WordPress and the version of the plugin WC Total Cache? What theme you use, what kind of custom posts you have and all info you think you can make it public.Thanks,
Forum: Reviews
In reply to: [Gitium] wp-admin crash during activatingCan you give me more information about the context of the error, in order to figure out what is going on?
Forum: Plugins
In reply to: [Utf8ize] utf8mb4 supportThe utf8mb4 is 100% backwards compatible with utf8 so the answer is yes it is. Thanks for your feedback! ??
Hello there, we intended to solve those kind of problems by implementing Exponential Backoff see https://github.com/PressLabs/toplytics/issues/81
Maybe this is the explanation for this error ‘Error #6 – Bounce Rate Extremely Low (Under 20%)’ see https://blog.kissmetrics.com/google-analytics-data-errors/ I hope it helps you, all the best.
Forum: Plugins
In reply to: [Toplytics] Show Postviews to VisitorsAfter a simple debate we figured out that the functionality ‘to display postviews on each post’ is out of the plugin’s purpose. A proper way to solve your problem is to use the plugin ‘Google Analytics Post Pageviews’. https://www.ads-software.com/plugins/google-analytics-post-pageviews/
Forum: Plugins
In reply to: [Toplytics] [toplytics] widget does not show any postsHello, you can send me any information that can help me to figure out (debug) more details about the whole process of the toplytics plugin. I wrote you the email because some info you may not want to share it with everyone. Thanks.
Forum: Plugins
In reply to: [Toplytics] [toplytics] widget does not show any postsCan you please send me your technical info on email to analyse the data and find out where is the problem? (my email is [email protected])
Forum: Plugins
In reply to: [Toplytics] [toplytics] widget does not show any postsHi, sorry for misunderstanding. What I mean with the toplytics.json file is to check if it’s virtually there, not physically.
If there is a file called toplytics.json on the root then it no must be there. It must be a rewrite rule working in order to create this file.
Please try to ‘Flush the rules’ from the plugin above settings page /wp-admin/tools.php?page=rewrite-rules-inspector then check again the JSON. If there is no file then try to access /index.php?toplytics=json and try to test out you rewrite rule mechanism from wordpress if it’s working ok. Please try with another rewrite rule, in some small test plugin see https://codex.www.ads-software.com/Rewrite_API/add_rewrite_rule
Try to use this plugin https://mario.trypl.com/wp-content/uploads/2015/08/toplytics-debug.zip and also the first one to trigger the toplytics cron, in order to find out how the requests are made. I also recommend you to go the Google API Console https://console.developers.google.com/project and see API’s & auth -> APIs -> Analytics API -> Usage
Forum: Plugins
In reply to: [Toplytics] [toplytics] widget does not show any postsCan you investigate further using this plugin https://www.ads-software.com/plugins/rewrite-rules-inspector/ the rewrite rules and find out if there is any JSON file there?
Forum: Plugins
In reply to: [Toplytics] [toplytics] widget does not show any postsCan you please check your file toplytics.json located to the root of the site like this https://yoursite.com/toplytics.json This file must contain the data collected from the GA.
Also please check that all the application is ok like in docs https://plugins.svn.www.ads-software.com/toplytics/trunk/doc/toplytics-api.pdf
you can trigger the cron by adding this plugin to your site:
<?php /** * Plugin Name: Toplytics Cron */ register_activation_hook( __FILE__, 'toplytics_cron_activate' ); function toplytics_cron_activate() { if ( class_exists( 'Toplytics' ) ) { global $toplytics; $toplytics->update_analytics_data(); } }
When you activate this plugin you will trigger the Toplytics cron. Save the permalinks from Settings->Permalinks and then check the toplytics.json file.
Forum: Plugins
In reply to: [Toplytics] [toplytics] widget does not show any postsHi, can you please check the tracking code on your site? https://support.google.com/analytics/answer/1032385?hl=en
The pageviews from the site are sent to Google Analytics by tracking code and then Toplytics collect those pageviews and then show up to the widget. First time, if there is no data into GA account, you must wait approx. 1h, until all the process is done.
Forum: Plugins
In reply to: [Toplytics] PHP 4 style constructors depeciatedHello,
We will make the changes soon. Thank you, we appreciate your interest in helping us.
All the best
Forum: Plugins
In reply to: [Toplytics] Issue to add year optionHello there, the extra code of toplytics plugin must be also into a separate plugin named ‘toplytics-…’ let’s say ‘toplytics-add-on’. I hope it helps you, all the best.
Forum: Plugins
In reply to: [Toplytics] Posts not displayingYou must also edit this line of the plugin and remove the condition
( 'post' == get_post_type( $post_id ) )
in order to work properly: https://github.com/PressLabs/toplytics/blob/master/toplytics/toplytics.php#L430 I add this issue on github, and it will be fixed on the next version of the plugin. Thanks alot for your interest.