Notifications
Clear all

wpForo 1.x.x [Solved] hide views

5 Posts
4 Users
1 Reactions
1,246 Views
Posts: 2
Topic starter
(@lukva)
New Member
Joined: 8 years ago

We are a starting forum and want to hide the views of posts. Is this possible?

thanks

Topic Tags
4 Replies
Alvina
Posts: 1867
Moderator
(@alvina)
Member
Joined: 5 years ago

Hi @lukva,

Please navigate to the Dashboard > forums > Settings > Styles admin page put the following CSS code in the "Custom CSS Code" textarea:

#wpforo #wpforo-wrap .wpfl-4 .wpf-thread-box.wpf-thread-views {
display: none;
}

#wpforo #wpforo-wrap .wpfl-4 .wpf-threads-head .wpf-thead-views {
display: none;
}

Don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.

selsebil
Posts: 88
(@selsebil)
Estimable Member
Joined: 3 years ago
.wpf-thead-views {

Thank you for the code. I guess that "thead" in the second line would be "thread", isn't it?

2 Replies
Tutrix
(@tutrix)
Joined: 4 years ago

Noble Member
Posts: 1357
Posted by: @selsebil

Thank you for the code. I guess that "thead" in the second line would be "thread", isn't it?

".wpf-thead-views" is correct

Relates to "head" not the "thread"

selsebil
(@selsebil)
Joined: 3 years ago

Estimable Member
Posts: 88

@tutrix Thank you very much