zenial
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Popular Posts] Stop counting page viewsOk, got it! Incredibly responsive support here! Thanks a lot and best wishes! 🙂
Forum: Plugins
In reply to: [WP Popular Posts] Stop counting page viewsOhh. Everything is already existing 🙂
Just to clarify. In my case, to count views only for published posts, I should place such code:
function my_trackable_post_types( $post_types ){ $track_these_post_types_only = array( 'post' ); return $track_these_post_types_only; } add_filter( 'wpp_trackable_post_types', 'my_trackable_post_types', 10, 1 );Your help would be much appreciated.
Forum: Plugins
In reply to: [WP Popular Posts] Stop counting page viewsI understand how it works. But I don’t need to count views for pages. Is it possible to choose counting only for posts?
My project consists of 10 static pages and every week I’m updating (only) the content of them (already for few years). So, in my case, I do not need page counting to avoid unnecessary litter in the DB.
Forum: Plugins
In reply to: [WP Popular Posts] Popular posts last month, last weekBut if it is possible from the admin panel to show popular posts (inside admin panel) within a custom time range/date range.
So maybe it is possible to insert shortcode to blog with custom time range too?