MyBB Community Forums
How to remove prefix in navigation bar - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html)
+--- Forum: General Support (https://community.mybb.com/forum-176.html)
+--- Thread: How to remove prefix in navigation bar (/thread-226464.html)



How to remove prefix in navigation bar - skrilaxrev - 2020-02-14

Hello,

how can I remove the prefix from the thread title in the navigation bar?

Best Regards
Skrilax


RE: How to remove prefix in navigation bar - SvePu - 2020-02-14

You can do this by modifying the core file "showthread.php".

Search in showthread.php for...
$thread['displayprefix'] = $threadprefix['displaystyle'].' ';

...and uncomment this part, like
//$thread['displayprefix'] = $threadprefix['displaystyle'].' ';

But be prepared that these changes could be overwritten on a following MyBB update.


RE: How to remove prefix in navigation bar - skrilaxrev - 2020-02-14

showthread.php - of course, thank you!