Hi,
you can do that using our Google Analytics integration https://wpadverts.com/documentation/google-analytics-integration-paid-addon/, or you can try installing some third-party plugin which will show the pageviews on custom post type pages, for example this one https://pl.wordpress.org/plugins/page-views-count/ should work.
Thread Starter
sulive
(@sulive)
Hi Greg,
I have activated the plugin. The page count appears on the regular WP posts, but not on the WP adverts posts. When I edit an WP adverts ad via the admin I can see the Page View Counter and it’s activated.
Is there some other setting?
Thanks
Sylvia
Try adding in your theme functions.php file the code below
add_action( "init", "my_pvc_init", 10000 );
function my_pvc_init() {
remove_filter('the_content', array('A3_PVC','pvc_stats_show'), 8);
add_filter('the_content', array('A3_PVC','pvc_stats_show'), 80000);
}