Oct 22, 2018 2:26 pm
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
Oct 22, 2018 2:46 pm
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%;}
Oct 22, 2018 3:00 pm
Thank you Robert. I am tracking all topics related to CSS and also trying it in localhost.
Oct 22, 2018 6:53 pm
That works great. Thank you!