How can I get rid of the breadcrumbs without removing the header or doing display:none tricks?
Hi,
Simply add this on your custom.css or Quicsk CSS
.breadcrumb {
display: none;
}
If you want to remove for a specific page, inspect the page then look for the unique body class.
.page-id-2323 .breadcrumb {
display: none;
}
Regards,
Ismael
Well, that´s clear but as I wrote in my first post: How can I do it WITHOUT doing display:none tricks ;-) Is there a setting, a filter or something like this?
Hi!
Add following code to functions.php.
add_filter('avf_title_args', 'remove_bread_avia', 10, 2);
function remove_bread_avia($args, $id){
$args['breadcrumb'] = false;
return $args;
}
Best regards,
Peter
Thanks Dude. Works perfect.