• Resolved webcreater

    (@webcreater)


    Good evening
    How can I change the link (.woocommerce-breadcrumb) so that when navigating back the shop page appears and not the start page?
    It works on the product level. On the category level it does not work.

    Thank you very much for your help.

    Divi 4.7.4
    woocommerce 4.7.1

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    Hi there! ??

    In order to replace the breadcrumb home URL for the shop URL, please add the following PHP code into your functions.php file, and replace the URL there for the desired one:

    /**
     * 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';
    }

    If you would like to know more bout this, please feel free to visit the link below that will redirect you to our documentation:

    https://docs.woocommerce.com/document/customise-the-woocommerce-breadcrumb/

    I hope that helps ??

    Thread Starter webcreater

    (@webcreater)

    Thats works fine, many thanks! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change link to shoppage woocommerce’ is closed to new replies.