Hide this for certain forums

lazarote

web enthusiastic
Collaborate
Registered
Joined
Jun 24, 2019
Messages
141
Points
53

Reputation:

Can i hide this part for certain forums? or at least the You have insufficient privileges to post threads here. ?

1626478819261.png
 
Solution
Btw i found a way to hide it for a specific forum, look

CSS:
[data-container-key="node-8"] {
    .js-threadList{
      
        display: none;
    }
    .block-filterBar{
      
        display: none;
    }
        .block-outer{
      
        display: none;
    }
}


from this (no threads on this forum):
1628397644431.png



to this one (empty one):
1628397652615.png

sucre13

Moderator
Staff member
Moderator
Collaborate
Registered
Joined
Jan 19, 2019
Messages
859
Points
153

Reputation:

You only have to configure the permissions to the users who can and will not be able to see the content or publish
 

lazarote

web enthusiastic
Collaborate
Registered
Joined
Jun 24, 2019
Messages
141
Points
53

Reputation:

You only have to configure the permissions to the users who can and will not be able to see the content or publish
sucre13I know, but some users get confused because they can't comment, anyway I found a way to change it, I just had to change the translation, so they understand why they can't comment there
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,533
Points
523

Reputation:

you can change the text in phrases sections.
xauUULThis is what he did, he just would like to prevent users to try to post in a section where it is not allowed, if I understand it correctly
 

lazarote

web enthusiastic
Collaborate
Registered
Joined
Jun 24, 2019
Messages
141
Points
53

Reputation:

Btw i found a way to hide it for a specific forum, look

CSS:
[data-container-key="node-8"] {
    .js-threadList{
      
        display: none;
    }
    .block-filterBar{
      
        display: none;
    }
        .block-outer{
      
        display: none;
    }
}


from this (no threads on this forum):
1628397644431.png



to this one (empty one):
1628397652615.png
 
Solution
Top