How to turn off breadcrumbs in NoProb?
Or how can I move it to the end of page?

Comments

alexhttp’s picture

I try this but it doesnt help (I find this in Russian site). I have error 500 after adding it in template.php

function templatename_breadcrumb($breadcrumb) {
if (!empty($breadcrumb)) {
array_shift($breadcrumb); //gets rid of “Home”
return ‘

’ . implode(’ » ’, $breadcrumb) . ‘

’;
}
}

alexhttp’s picture

I find answer by myself. I deleted print $breadcrumb; from page.tpl.php

Thanks

Eric3’s picture

Alternatively, you could add the rule

.breadcrumb {
    display: none;
}

to style.css, which keeps the breadcrumb markup in place, but prevents it from displaying.