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

    Hello

    I would like to activate “le fil d’ariane” / Breadcrumb Trail (?) on all my website.
    Could you tell me where I can find this setting ?

    Thanks for your help

    #734029

    Hey,

    Please go to Enfold theme options > Header and enable them under “Header Title and Breadcrumbs” :)

    Best regards,
    Yigit

    #734761

    Oh thank you !
    I have three more question :

    – the breadcrumb is not clickable. Is it possible ?

    – There is a little text before the breadcrumb :” you are here”, is it possible to delete “you are here” ?

    – in the breadcrumb there is home/blog/mycategory/namearticle, is it possible to delete “blog” because it’s a “setting” I would like not appear, for web users I would prefer only home/mycategory/namearticle

    Thanks for your help

    #734766

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    span.trail-before {
        display: none!important;
    }
    

    Then please add following code to Functions.php file in Appearance > Editor

    add_filter( 'avia_breadcrumbs_args', 'avia_breadcrumbs_args_mod_rb', 10, 1 );
    function avia_breadcrumbs_args_mod_rb( $args ) {
    if(is_single()){
    	$args['show_posts_page'] = false;
    	}
    	return $args;
    }

    Best regards,
    Yigit

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