Page 1 of 1
SOLVED: disable the page title above breadcrumb
Posted: Fri Nov 16, 2018 2:50 pm
by Ghost Leader
how do you disable also the text above breadcrumb? The one saying on what page you are.
Can you point me to the right direction?
many thanks
Re: help needed: disable the page title above breadcrumb
Posted: Mon Nov 19, 2018 10:14 pm
by xxvirusxx
You can remove this code from .tpl files where you want to not show
Code: Select all
<ul class="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
<?php } ?>
</ul>
Or easy way. Add this to css:
Example:
From:
Code: Select all
.breadcrumb {
margin: 0 0 20px 0;
padding: 8px 0;
border: 1px solid #ddd;
}
To:
Code: Select all
.breadcrumb {
margin: 0 0 20px 0;
padding: 8px 0;
border: 1px solid #ddd;
display: none;
}
Re: help needed: disable the page title above breadcrumb
Posted: Wed Nov 21, 2018 6:07 pm
by Ghost Leader
great info. Thanks!