Notifications
Clear all

wpForo 1.x.x [Closed] How to hide members online widget to the guest

2 Posts
2 Users
0 Reactions
447 Views
Posts: 94
Topic starter
(@alice79b)
Estimable Member
Joined: 3 years ago

Hi,

I'd like to hide members online widget to the guests. Is there a way to do that?

Thank you,

Alice

1 Reply
Robert
Posts: 10549
Admin
(@robert)
Support Team
Joined: 8 years ago

Hi @alice79b,

There is no option to hide the Online Members Widget for guest. You can hide it using custom CSS but the widget should be located in wpForo Forum Sidebar. The CSS will not work if you put the widget in WordPress theme sidebars.

 

This css code should be inserted in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea, then save it, delete all caches:

#wpforo-wrap.wpf-guest #wpf-widget-online-users.wpforo-widget-wrap{
     display:none;
}