MyBB Community Forums

Full Version: how do i change portal to home
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can i change the name of the portal to home ? see the pic i`ve attached where it points to portal i want it to say home
Maybe try:

Edit global.php line 580
// Add our main parts to the navigation
$navbits = array();
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";

And change it to:
// Add our main parts to the navigation
$navbits = array();
$navbits[0]['name'] = 'Home';
$navbits[0]['url'] = $mybb->settings['bburl']."/portal.php";

$navbits[1]['name'] = 'Forum';
$navbits[1]['url'] = $mybb->settings['bburl']."/index.php";

Not sure if there is any easier way.
add to first line in .htaccess
DirectoryIndex portal.php index.php
Uhm.. why was this post bumped?

The OP doesnt even run a MyBB forum anymore
Please check the date of the thread before posting. Wink