Hi.
i have the “you are here:” notification in the website theme.
how can i disable/ remove it?
BR,
Ben
Did you want to remove the path afterwards as well or just the text?
If you only want to remove the text see this post
https://kriesi.at/support/topic/breadcrumbs-change-you-are-here
If you want to turn off breadcrumbs all together then change
'breadcrumb' => true,
in functions-enfold.php to
'breadcrumb' => false,
Thanks a lot man!
works like a charm.
another little question: under the logo i also see the page name. how can i remove it to?
BR,
Ben
If I understand correctly, you just don’t want the pages title to be visible in that bar? I don’t know exactly where it’s located in the code but if you add this code to your quick css or custom.css this will make it disappear
.main-title {
display: none;
}
Hi!
If you want to remove the page title completely I’d suggest to open up functions-enfold.php and to replace:
'title' => get_the_title($id),
with
'title' => '',
Regards,
Peter
thanks Dude!
works great!