Notifications
Clear all

[Solved] wpForo Online Members widget

3 Posts
2 Users
1 Reactions
314 Views
Posts: 22
Topic starter
(@zygzak)
Eminent Member
Joined: 10 months ago

I need the wpForo Online Members widget so that it is not visible to unlogged users who is online. When I am logged out, I can still see who is online. I would like it not to be visible.

Thank you for all your help

2 Replies
Tutrix
Posts: 1493
(@tutrix)
Noble Member
Joined: 5 years ago

@zygzak 

you can use this css code

#wpforo #wpforo-wrap #wpf-widget-online-users {
  display:none;
}
.logged-in #wpforo #wpforo-wrap #wpf-widget-online-users {
  display:block;
}

add it to custom css
Dashboard > wpForo > Settings > Colors & Styles > Custom CSS

-----------------------------------

or e.g. a plugin like >> User Role Editor

Posts: 22
Topic starter
(@zygzak)
Eminent Member
Joined: 10 months ago

I inserted the code as described and it's great. Thank you again Turtix