MyBB Community Forums

Full Version: Little Help Please
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was wondering which template and which bit of coding I have to edit the forums link just above this post, i dont mean on the nav bar,

MYBB COMMUNITY FORUMS > Mybb > General Support
L This Thread

Well I need to edit the link which is in caps on my forum because it links to index.php which is my portal page but I need it to link to my forums. Can anybody help
Open up global.php and find

Quote:$navbits[0]['url'] = "$settings[bburl]/index.php";

Now, the bold in the above code is where your forums link will be. As per default, it's currently at index.php, but like you said, that is now your portal link. Now what you do is, change the bold part into whatever you re-named the former index.php into. Let' say it was forum.php then it should look like this:

Quote:$navbits[0]['url'] = "$settings[bburl]/forum.php";
Thanks dude, sorted that now