Nirjonadda

Registered
Please can you let me know that how can Hide Section Header of a Node with CSS code? I have disabled posting (Allow new messages to be posted in this forum) the main node for utilizing the child nodes to categorize the threads. How to remove the section header of the a particular parent node. I also want to know how to hide (You have insufficient privileges to post here.) message of a particular parent node.

ScreenShot00297.png
 
Sorry for the delay, this was posted in the wrong section (General Discussion), I've moved it to the support area.

Code:
[data-template="forum_view"] .block-filterBar {
    display: none;
}
[data-template="forum_view"] .block-outer-opposite span.button.is-disabled {
    display: none;
}

This will hide the filter bar + the button down there saying you have no permission.
 
There's no easy approach to that, you'll just need to find the node ID:

Code:
[data-container-key="node-142" ]
{
.block-filterBar, .block-outer-opposite span.button.is-disabled
{ display: none; }
}

142 being your node id. There's no easy way to do permission-based for various groups on specific elements like this.
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back