Hi,
How can I remove the “You are here” text from the breadcrumbs section?
Thanks
@SilviaNT add this to style.css or Enfold extra styling
.avia-breadcrumbs .trail-before * {
display: none !important;
}
Hey!
You can also add this code to your child theme functions.php:
/* Following code changes "You are here:" in front of breadcrumbs */
add_filter('avia_breadcrumbs_args', 'avia_change_you_are_here_breadcrumb', 10, 1);
function avia_change_you_are_here_breadcrumb($args){
$args['before'] = "";
return $args;
}
Regards,
Peter
Thanks, it works.