MyBB Community Forums

Full Version: How to change navigation title from sitename to home?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

How would I change the navigation title from the default sitename to say Home and for it to be a link on the homepage, not just text?

For example, instead of it saying 'MyBB Community Forums' on the homepage, for it to say 'Home' and to be a blue link.

Does anyone know how I would achieve this?
If you mean
[Image: aa1dcb2.png]

Admin panel -> Settings -> General Configuration -> Board Name
Hello,

Yes, but I need to manually change it to say 'Home' without changing the board name.
In global.php (forum root) change:
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";
to something like this:
$navbits[0]['name'] = "Home";
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";

If it should link to another page change the 2nd line.
Thank you so much, you make the MyBB community great!