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;
}
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
Thank you!
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