MyBB Community Forums

Full Version: Change Breadcrumbs Navigation switch order of Portal and Forums?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I wish to change my breadcrumbs navigation so when I am on the portal page it will be

Forum Name

and on the forum page and all other pages it would be

Forum Name -> Forum

how can I go about doing this?
In index.php, find:
// Load global language phrases
$lang->load("index");

Add after:
add_breadcrumb(Forums, "index.php");

In portal.php, find:
add_breadcrumb($lang->nav_portal, "portal.php");

Replace with:
// add_breadcrumb($lang->nav_portal, "portal.php");
Worked thank you so much!!!