Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

[Closed] Add Topics button permission

4 Posts
3 Users
1 Reactions
835 Views
Posts: 1
Topic starter
(@carl5566)
New Member
Joined: 3 years 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: 3611
(@chris)
Famed Member
Joined: 4 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: 1522
(@tutrix)
Noble Member
Joined: 5 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: 4 years ago

Famed Member
Posts: 3611

@tutrix,

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