Tagged: breadcrumb trail
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
Hey,
Please go to Enfold theme options > Header and enable them under “Header Title and Breadcrumbs” :)
Best regards,
Yigit
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
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