Quote:
Originally Posted by phoenix1977
HTML Code:
$newTemplate = vB_Template::create('navbar_breadcrumbs');
$newTemplate->register('navbits', $navbits);
$breadcrumbs = $newTemplate->render();
$breadcrumbs = str_replace("'", "'", $breadcrumbs);
// to put it above the Forum Information box
$find = '<div id="forum_info_options" class="forum_info">';
$vbulletin->templatecache['FORUMDISPLAY'] = str_replace($find,$breadcrumbs.$find, $vbulletin->templatecache['FORUMDISPLAY']);
For forumdisplay this method work but there is a little problem with subforum of subforum where doesn't work.
Examples: Home >> Videogames (work)
Examples 2: Home >> Videogames >> Nintendo (doesn't work)
Examples 3: Home >> Videogames >> Nintendo >> Wii (doesn't work)
How to fix it? Any ideas?
|
It works just fine on my 4.0.2 test site using a default style. I'm not sure why it isn't working for yours.
Quote:
Originally Posted by eroan
I tried everything to make this work in footer, it's impossible.
I would like my breadcrumb to be in the footer (displayed at top with CSS).
Any idea ?
|
Without seeing what code you used, I really don't have any suggestions of what to change.