Do you experience any JS issues?
Can you share a link to your site?
Do you have a mail I can send it to?
Anonymous User 12851872
(@anonymized-12851872)
Hi,
I have
– Counting mode: PHP
and a code in my child theme functions.php file
/* Posts View Counter*/
add_action( 'wp_footer', 'wpr_reload_ajax', PHP_INT_MAX );
function wpr_reload_ajax()
{
?><script>
var request = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
request.open( 'GET', window.location+'?<?php echo time(); ?>=1', true );
request.send();
</script><?php
}
everything works fine with my plugin WP Fastest Cache Cache, even before the Cache plugin Zencache.
code I found there
http://blog.wp-rocket.me/fr/compatible-plugin-compteur-vues/