Home Forums WoodMart support forum Return to Shop link

Return to Shop link

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #530359

    satishreesarees
    Participant

    How to change link of return to shop button? I want to direct it to my category page.

    Attachments:
    You must be logged in to view attached files.
    #530453

    Hung Pham
    Keymaster

    Hi satishreesarees,

    Thanks for reaching to us,

    Please add below Custom Code to the function.php of the Child theme:

    function wc_empty_cart_redirect_url() {
    	return 'https://www.mywebsite.com/'; 
    }
    add_filter( 'woocommerce_return_to_shop_redirect', 'wc_empty_cart_redirect_url' );

    Regards,

Viewing 2 posts - 1 through 2 (of 2 total)