Remove "Post Views" from WordPress admin

Posted in: Newspaper
Post count: 4

I would like to remove Post Views from the WordPress admin, as in … remove all “Views” functionality from our site. I know I could just disable that column, but I want to control this for all users. How do I strip the column “Views” from the theme functionality?

Post count: 854

hi,
I have the latest theme installed on my computer.

can you please make me a print screen and show me where do you find that post count.

thank you.

Thanks for you message.
Radu A.

Post count: 4

It’s a column on the posts page. I know you can un-check the box and remove it from view for your own account, but I wanted to remove the functionality altogether.

I think I’ve figured it out.

In the td_wordpres_booster.php, I changed this …
require_once(‘wp_booster/td_page_views.php’);
to this …
// require_once(‘wp_booster/td_page_views.php’);

And in the single.php, I changed this …
td_page_views::update_page_views($post->ID);
to this …
// td_page_views::update_page_views($post->ID);

That seems to have worked.

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.