Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1334430

    I tried using this code to remove the first separator in Breadcrumbs but it did not work. Link to blog post below.

    a.trail-begin + .sep {
    display: none;
    }

    #1334433

    Hey,

    Thanks for contacting us!

    Please add following code to bottom of Functions.php file of your child theme to remove Home from breadcrumbs

    add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
    function avia_change_home_breadcrumb($args){
    $args['show_home'] = false;
    return $args;
    }

    Best regards,
    Yigit

    #1335132

    Thank you!

    #1335133

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Enjoy the rest of your day!

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How remove beginning separator in Breadcrumbs’ is closed to new replies.