Code to Remove ‘Home’ from WooCommerce Breadcrumbs

/* Remove 'Home' from WooCommerce Breadcrumbs */
add_filter ('woocommerce_breadcrumb_defaults', function( $defaults ) {
    unset($defaults['home']);
    return $defaults;
});

By default, WooCommerce Breadcrumbs provide easy navigation to your customers. However, for most WooCommerce shops, Home Page and Shop Page can be different.

Hence it can be necessary to remove Home Page link from WooCommerce Breadcrumbs so that, customers won’t visit back the homepage and stay on shop page itself. If that’s the case, add the above code to your child theme’s functions.php.