Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1013073

    Hi,

    How can I remove the “You are here” text from the breadcrumbs section?

    Thanks

    #1013075

    @SilviaNT add this to style.css or Enfold extra styling


    .avia-breadcrumbs .trail-before * {
    display: none !important;
    }

    #1013080

    Hey!

    You can also add this code to your child theme functions.php:

    
    /* Following code changes "You are here:" in front of breadcrumbs */ 
    add_filter('avia_breadcrumbs_args', 'avia_change_you_are_here_breadcrumb', 10, 1);
    function avia_change_you_are_here_breadcrumb($args){
    $args['before'] = "";
    return $args;
    }
    

    Regards,
    Peter

    #1013172

    Thanks, it works.

    #1013213

    Hi,

    Great, glad you got it working. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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