MyBB Community Forums

Full Version: remove breadcrum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: arrow_down.gif] how i can remove this image on mybb 1.6??? [Image: arrow_down.gif][Image: arrow_down.gif][Image: arrow_down.gif] is the image of the navigation
It's hardcoded apparently so you'd have to edit a core file.
Hide it with CSS, it's the best option available (without editing core files).

Edit your theme global.css and add:
#breadcrumb_multipage {
	display: none;
}
with editing corefiles, comment two lines in inc/functions.php

elseif(!empty($multipage))
{
    $navbits[$navsize]['url'] = get_forum_link($forumnav['fid'], $multipage['current_page']);

    // $navbits[$navsize]['multipage'] = $multipage;
    // $navbits[$navsize]['multipage']['url'] = get_forum_link($forumnav['fid']);
}

I suggested a different change earlier, but this one keeps the backlink to the correct forum page in the breadcrumb.

Would be nice if a setting for this dropdown could be added. Linking back to the correct forum page is okay, the drop down on the other hand is kinda pointless.
thanks, i remove a line in the functions ^^
(2010-08-09, 07:19 PM)Aquilez Wrote: [ -> ]Hide it with CSS, it's the best option available (without editing core files).

Edit your theme global.css and add:
#breadcrumb_multipage {
	display: none;
}

Thanks Smile

The breadcrum is really useless IMO.