Tagged: 

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

    Hello

    I’ve activated my breadcrumb but I would like remove the title at left “Blog – A la une”, at right remove the text “vous êtes ici:”

    and simplify the breadcrumb as I’ve built my menu : Accueil / J’ai testé pour vous / J’ai testé l’atelier Forrest Yoga…

    instead of
    Accueil/J’ai testé l’atelier Forrest Yoga « Equilibre & Inversion » avec Amie Mouneimné / J’ai testé pour vous / J’ai testé l’atelier Forrest Yoga « Equilibre & Inversion » avec…

    Thanks for your help

    #925011

    Hey Sandra,

    1- I added following code to bottom of Functions.php file in Appearance > Editor

    add_filter('avia_breadcrumbs_args', 'avia_remove_you_are_here_breadcrumb', 10, 1);
    function avia_remove_you_are_here_breadcrumb($args){
    $args['before'] = "";
    return $args;
    }

    Reference – https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/avia_breadcrumbs_args

    2- I edited your page and chose to display only breadcrumbs under Layout section.

    3- It does seem correct on my end. Attached a screenshot in private content field.

    Please review your website

    Best regards,
    Yigit

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