XF 1.4 How to remove (No prefix)

HybridBoy

Active member
Hi!

I can't get rid of (No prefix) from thread prefixes.

and.webp
"Require users to select a prefix" is selected.
this.webp

Thank you for your time!
 
Add this to EXTRA.css:
Code:
node32 .prefix.noPrefix,
.node33 .prefix.noPrefix,
.node35 .prefix.noPrefix
{
    display: none !important;
}

Where 32, 33 and 34 are the forum IDs.

That will hide it from view.
 
Top Bottom