woogists
3/11/2018 - 4:18 PM

[WooCommerce Core] Change the home link to a different URL

[Frontend Snippets][Customize the WooCommerce breadcrumb] Change the home link to a different URL

add_filter( 'woocommerce_breadcrumb_home_url', 'woo_custom_breadrumb_home_url' );
function woo_custom_breadrumb_home_url() {
    return 'http://woothemes.com';
}