XF 2.2 Hide/remove New Posts button

Solution
Add to the extra.less template:

This:
CSS:
.button--icon--bolt
{
    display: none !important;
}

Or this:
CSS:
[data-template="forum_list"]
{
    .button--icon--bolt
        {
            display: none;
        }
}
Reverse what you did to remove it.
That would be too easy. But thanx :)

It have been gone for weeks, and I have no idea where it went
I can't see any codes written, but I guess I had to remove it some time
I just don't recall doing it...


Update:
I just found the answer in this thread
All I had to do was edit the page: forum_overview_wrapper 😅
 
Last edited:
Top Bottom