Profesor Qwertius
Profesor Qwertius
For me personally I don't need time period setting, total hits since ever is enough, just to keep things silly simple. Thanks!
I've been collecting stats for last 6 months and I still miss the column with total hits count most. The column could still be optional though, there's an option pane...
Never mind, I achieved my goal by installing WP Code Snippets plugin and enabling this snippet for admin area only: ``` add_filter('manage_post_posts_columns', function($columns) { return array_merge($columns, ['pageviews' => __('Pageviews', 'textdomain')]);...