Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1260733

    The blog detail page of our website is always showing news link in the breadcrumb. Can you please help in fixing this issue?

    • This topic was modified 4 years ago by kcroy.
    #1261611

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.