MyBB Community Forums

Full Version: Navigation change.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need to change my navigation output now that I have my portal setup as my homepage. Basically, now index.php is the portal page and forums.php is the forum index page. You can check out my forums here.

On the portal page I need navigation to be:

Arcane Lands

On the forums I need navigation to be:

Arcane Lands >> Forums

So now, if I go to the Technical Support section it will show:

Arcane Lands >> Forums >> General Forums >> Technical Support

Is this a simple code edit or will I need some sort of plugin to do this?
You may edit header templates.
(2012-06-20, 02:04 AM)Mybb India Wrote: [ -> ]You may edit header templates.

I appreciate you trying to help but this answer is completely useless to me and I'm honestly not sure how it is relevant to my question whatsoever.
You'd have to modify some core files for definite. I believe you might be able to sort it by just editing the output_page() function slightly (though I haven't looked into it).
(2012-06-20, 12:20 PM)euantor Wrote: [ -> ]You'd have to modify some core files for definite. I believe you might be able to sort it by just editing the output_page() function slightly (though I haven't looked into it).

I'll take a look tonight and see what I can do.
I have a feeling the navigation panel is output inside each file.
Install PHP in Templates plugin.

Open ./portal.php and find;
add_breadcrumb($lang->nav_portal, "portal.php");
and Comment it out like this;
//add_breadcrumb($lang->nav_portal, "portal.php");

Now go to;
AdminCP > templates > Navigation Templates > nav > and find;
{$nav}
and paste the following code just BEFORE that;
<if THIS_SCRIPT != "portal.php" then>
<a href="index.php">Arcane Lands</a> >> 
</if>