MyBB Community Forums

Full Version: Without forum name in navigation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
I'd like to change forum name in navigation. Standard is:

FORUM_NAME SEPARATOR FORUM1 SEP. FORUM2. SEP... ACTIVE

I have long forum title (about ~40 chars) and navigation looks very bad.
Where can I change it? I didn't find anything in templates.
What do you want to change? Like do you want to change the seperator? Or do you want to make it so the last item is underneath everything else?
I want to delete/change forum name (first position) in navigation.

Of course, I can change forum title in APC, but it isn't good idea.
In global.php, find:
// Add our main parts to the navigation
$navbits = array();
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";
Change to:
// Add our main parts to the navigation
$navbits = array();
$navbits[0]['name'] = 'My short name';
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";
Thank you very much Wink
You're welcome!