breadcrumb “home” URL link change
-
Hello,on my woocommerce shop, when I select a product, actually I visualize this as breadcrumbs:
HOMEPAGE ICON > CATEGORY PRODUCT
I need to have
SHOP > CATEGORY PRODUCT
or
HOME > SHOP > CATEGORY PRODUCTIn alternative, mantain HOMEPAGE ICON, but change its URL on Shop URL.
Is it possible?
I tried these solutions
https://docs.woocommerce.com/document/customise-the-woocommerce-breadcrumb/
, inserting on function.php file these rows/**
* Replace the home link URL
*/
add_filter( ‘woocommerce_breadcrumb_home_url’, ‘woo_custom_breadrumb_home_url’ );
function woo_custom_breadrumb_home_url() {
return ‘https://woocommerce.com’;
}but nothing happens: HOME ICON goes always to homapage.
Many thanks!
- The topic ‘breadcrumb “home” URL link change’ is closed to new replies.