Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #976060

    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!

    #976123

    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

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