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?
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
}