The blog detail page of our website is always showing news link in the breadcrumb. Can you please help in fixing this issue?
Hey,
Thanks for contacting us and sorry for the late reply!
Please add following code to bottom of Functions.php file of your child theme in Appearance > Editor
add_filter('avia_breadcrumbs_args', 'avia_remove_cat_breadcrumb', 10, 1);
function avia_remove_cat_breadcrumb($args){
$args['show_categories'] = "";
return $args;
}
Best regards,
Yigit