Notifications
Clear all

wpForo 1.x.x [Solved] Hide

5 Posts
3 Users
0 Likes
694 Views
Posts: 28
 WUCW
Topic starter
(@wucw)
Eminent Member
Joined: 4 years ago

Hi support,

Untill I get more activity in the forum, then I would like to hide the number of topics and posts (see attached image).

How can I do that?

Thanks 🙂

/OKEIwebbureau

4 Replies
Tutrix
Posts: 1246
(@tutrix)
Noble Member
Joined: 4 years ago

@okeiwebbureau

add this to custom css

#wpforo #wpforo-wrap .wpfl-2 .wpforo-forum-stat {
display: none;
}

Dashboard > Forums > Settings > Style (custom css)

Posts: 28
 WUCW
Topic starter
(@wucw)
Eminent Member
Joined: 4 years ago

Thanks, Tutrix 👍 😉 

 

Is it also possible to hide this for guests only?

 

/OKEIwebbureau

1 Reply
Sofy
 Sofy
Admin
(@sofy)
Joined: 6 years ago

Support Team
Posts: 4229

@okeiwebbureau,

Use this CSS code:

body:not(.logged-in) #wpforo #wpforo-wrap .wpfl-2 .wpforo-forum-stat{
     display:none;
}
Posts: 28
 WUCW
Topic starter
(@wucw)
Eminent Member
Joined: 4 years ago

Thanks a lot, Sofy 👍 👍 😀