Tagged: breadcrumb trail, navigation
Hi there,
Is it possible to remove ‘Home’ from the breadcrumb trail?
For example the Breadcrumb Trail currently is this:
Home /ACCESSORIES /MERCHANDISE /DRINK BOTTLE
Is it possible to remove ‘Home’ from the Trail so that it starts at ‘ACCESSORIES’?
Thanks!
Hey,
Please add following code to Functions.php file in Appearance > Editor
/* Following code changes "Home" in breadcrumbs */
add_filter( 'avia_breadcrumbs_args', 'avia_breadcrumbs_args_mod', 10, 1 );
function avia_breadcrumbs_args_mod( $args ) {
$args['show_home'] = "";
return $args;
}
Best regards,
Yigit