Tagged: breadcrumb, category
Hi,
I believe Enfold has changed the way the breadcrumbs are generated. Is that correct?
Can you submit me the code to remove (not show) the “category” from the breadcrumb for single posts? Either by CSS or via functions.php (in the Child theme).
Thanks in advance!
Best regards,
Monique
Hey Monique,
Please add following code to Functions.php file in Appearance > Editor
add_filter( 'avia_breadcrumbs_args', 'avia_breadcrumbs_args_mod', 10, 1 );
function avia_breadcrumbs_args_mod( $args ) {
$args['show_categories'] = false;
return $args;
}
Best regards,
Yigit
Hi Yigit,
That works well! Thanks!
Can you flag this topic as solved please?
Best regards,
Monique