MyBB Community Forums

Full Version: Prefix
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
You now with the prefix plugin when the threads are being listed it is like this

[prefix name] how do i remove the [] part to the prefix
What thread prefix plugin do you use?
Open up the prefix.php file. Find this code:

$thread['prefix'] = "<strong>[".$thread['prefix']."]</strong> ";

Edit that into:

$thread['prefix'] = "<strong>".$thread['prefix']."</strong> ";
Thanks