Notifications
Clear all

[Closed] Add Topics button permission

4 Posts
3 Users
1 Likes
387 Views
Posts: 1
Topic starter
(@carl5566)
New Member
Joined: 1 year ago

May I ask what methods can be used to make the 'add topics' button visible only after a user logs in? I have removed the 'Can create topic' under guest permissions, but the 'add topics' button still appears.

3 Replies
Chris
Posts: 3650
(@chris)
Famed Member
Joined: 3 years ago

Hi @carl55There is no option to hide the Add Topic button for certain usergroups.

You can remove it for every Usergroup or show to every Usergroups.

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

Hi @carl5566

if only guests shouldn't see the button
you can use this CSS code

#wpforo #wpforo-wrap .wpforo-category .wpf-button {
 display: none;
}
.logged-in #wpforo #wpforo-wrap .wpforo-category .wpf-button {
 display: block;
}

add this to
Dashboard > wpForo > Settings > Colors & Styles > Custom CSS

1 Reply
Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3650

@tutrix,

That's something new for me, thanks a lot.