MyBB Community Forums

Full Version: mybb remove forum legend
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Please help me. I want to make my title to for SEO but the title reflects on the forum board upper left corner below welcome message. How can change that function on the upper left corner below welcome message I believe its called navigation or something. I mean so it doesnt reflect forums name
Thanks
that helps the users to easily navigate across the forum. are you sure to remove it ?
find <navigation> in header template and remove it or use comment tags for it (<!-- <navigation> -->)
How can I change it to HOME in stead of title
In global.php change:
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";
to whatever you want. So HOME with link to index.php would be
$navbits[0]['name'] = "HOME";
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";
To get rid of link remove 2nd line.