Hi, I searched the forum and found an old listing to remove breadcrumbs and tried it anyways. It helped but did not eliminate the entire problem. I want to eliminate “You are here: page name.” I found this from June 6, 2013:
Hi! In functions-enfold.php replace:
if($breadcrumb) $additions .= avia_breadcrumbs(array(‘separator’ => ‘/’));
with
if($breadcrumb) $additions .= avia_breadcrumbs(array(‘separator’ => ‘/’, ‘before’ => ”));
Regards,
Peter
So I replaced a similar line and now have just the page name showing. How do I get rid of it all together? Thanks, Linda
Hey Linda,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.breadcrumb.breadcrumbs.avia-breadcrumbs {
display: none;
}
Best regards,
Jordan
Thank you Jordan – that worked perfectly!