The Default WooCommerce HOME link on any Woo breadcrumbs brings you to the website’s home page. I think this is stupid. Especially if your store lives at a different URL than the HOME page. The HOME breadcrumb link should always bring you to your stores HOME page not your websites home page. This snippet lets you point the HOME breadcrumb url where ever you want.
add_filter( 'woocommerce_breadcrumb_home_url', 'woo_custom_breadrumb_home_url' );
function woo_custom_breadrumb_home_url() {
return 'https://www.yoursite.com/store-home/';
}