Hello
My question is: How to REMOVE and not jsut hide the breadcrumbs?
I’v done that, and it works, but i’m not sure that is the correct way :
add_filter('avf_title_args', 'change_breadcrumb', 10, 2);
function change_breadcrumb($args,$id) {
if($args['breadcrumb'] == true) {
$args['breadcrumb'] = false;
}
return $args;
}
Hi!
That’s the correct way, if there’s no $args[‘breadbrumb’] the avia_breadcrumbs() function won’t be invoked (functions-enfold.php, linea 302)
Cheers!
Josue