Notifications
Clear all

wpForo 1.x.x [Solved] Hide the online members and number of members

2 Posts
2 Users
1 Likes
1,620 Views
Posts: 73
Topic starter
(@srtalop)
Estimable Member
Joined: 5 years ago

Hi team, is it possible to hide the online members and number of members registered? (see image attached) Many thanks.

1 Reply
Sofy
Posts: 4310
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi @srtalop,

You should use the CSS code for this purpose. Something like this: 

.wpf-stat-item:nth-child(4), .wpf-stat-item:nth-child(5) {
display: none !important;
}
/* Use this code to center elements */
#wpforo #wpforo-wrap #wpforo-stat-body .wpf-stat-data {
display: flex;
justify-content: space-between;
}

Don't forget to delete all caches before checking.