XF 2.3 Hide a prefix in forum view... how?

beerForo

Well-known member
Sounds counterproductive but the use case is when you have a single prefix in a forum for the purpose of seeing that prefix in the new posts list with all the other prefixes but you do not need it to show in the forum itself since it is the only prefix there. Thanks.
 
when you have a single prefix in a forum for the purpose of seeing that prefix in the new posts list with all the other prefixes but you do not need it to show in the forum itself since it is the only prefix there. Thanks.
Not sure I follow, maybe one of these?


You only want to hide one prefix?

[data-template="forum_view"]
.prefix--name {
display:none;
}

Or you don't want any prefixes to show at all in the thread list?

[data-template="forum_view"]
.labelLink {
display:none;
}
 
Back
Top Bottom