MyBB Community Forums

Full Version: Subforum separator
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i remove the Subforum separator (the comma) ?

[Image: Unbenannt.png]


Thanks !
You can remove the comma through the language files (global.lang.php, $l['comma'] = ", "), but that'll also affect some other places like Who's online. The easiest way I see of doing it would be to edit the core files which isn't really best practice, but it's only commenting out one line so it shouldn't be too bad.

Open './inc/functions.forumlist.php' and goto line 230 (CTRL+G), look for:
$comma = $lang->comma;

and comment it out:
//$comma = $lang->comma;
Worked,thanks a lot