XF 2.2 How i can hide this

@lucien_lies this code will remove the body header from all pages and no more page titles will be displayed, forum titles, discussion titles, resource titles, etc..

Better to target only the forum_list template:
Less:
[data-template="forum_list"] {
    .p-body-header {
        display: none;
    }
}

only for unregistered users ?
You will need to modify the forum_list template using a conditional statement.
 
Top Bottom