Notifications
Clear all

wpForo 1.x.x [Solved] Remove Post + View count

4 Posts
3 Users
0 Reactions
3,402 Views
Posts: 3
Topic starter
(@cpz342)
Active Member
Joined: 6 years ago

Greetings,

I'm trying to remove the post/view count from topic lists. I disabled all of the options I could find that were related but they won't go away. Any idea how can I do this?

I attached a screen for reference. 

Thank you!

3 Replies
Robert
Posts: 10549
Admin
(@robert)
Support Team
Joined: 8 years ago

You can hide topic views and post count using CSS code. Put this code in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea. Save it, delete all caches, navigate to forum front-end and press Ctrl+F5:

#wpforo #wpforo-wrap .head-stat-views,
#wpforo #wpforo-wrap .wpforo-topic-stat-views,
#wpforo #wpforo-wrap .head-stat-posts,
#wpforo #wpforo-wrap .wpforo-topic-stat-posts{display: none;}
#wpforo #wpforo-wrap .wpforo-topic-info {width: 92%;}
writetoyogen
Posts: 78
(@darjeeling)
Estimable Member
Joined: 6 years ago

Thank you Robert. I am tracking all topics related to CSS and also trying it in localhost.

Posts: 3
Topic starter
(@cpz342)
Active Member
Joined: 6 years ago

That works great. Thank you!