Home Forums WoodMart support forum Shopping cart

Shopping cart

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #708449

    KevCh8
    Participant

    Hi
    As seen in screenshot attached, when you delete a product, I do not want it to redirect to the SHOP PAGE, I would like to change it tot the Home page, how can I do this?

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

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    By default, It redirects users to the Shop page after a product is removed from the cart. There is no option in theme settings to change this link.

    To redirect to the Home page instead, you can use the code below in function.php:

    add_filter( 'woocommerce_return_to_shop_redirect', 'custom_return_to_home' );
    function custom_return_to_home() {
        return home_url(); // Redirect to Home page instead of Shop
    }

    Best Regards,

    #708557

    KevCh8
    Participant

    Where do I add this code?

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

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    Navigate to > Appearance > Theme File Editor
    Click on the functions.php file.

    Add your PHP code at the bottom:
    https://ibb.co/TBB3nnh4

    Best Regards,

Tagged: 

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