MyBB Community Forums

Full Version: Change board name href
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I change the board name href?

Like, this:
Board name > Page

Because I renamed portal.php to index.php and index.php to forum.php, I want to change "Board name" href to "forum.php"

MyBB version is 1.6
Not a good idea to mess with filenames. Some things could get seriously screwed up.

Use .htaccess to make portal be the default page.
If you must change it you will have to make a core edit.

Edit global.php, around line #564

Find:
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";

and change it to whatever you want.