MyBB Community Forums

Full Version: how to remove the name of the forum boards in Breadcrumb
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When I would ask, what if I want to remove the name of the board in the forum navigation, because there was no house penggnti URL is an image by following the tutorial here
http://yaldaram.com/thread-317.html Or http://myskins.org/Thread-Make-A-Nice-Br...-your-site

[Image: how+to+remove+this+board+breadcrumb.jpg]

I've been trying to work on the code below but was not successful
// Add our main parts to the navigation
$navbits = array();
$navbits[0]['name'] = $mybb->settings['bbname_orig'];
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";

please visit my test forum http://kampoeng.comuv.com/
Change it to:
$navbits = array();
$navbits[0]['name'] = 'Home' ;
$navbits[0]['url'] = $mybb->settings['bburl']."/index.php";