Home Forums WoodMart support forum Return to Shop link Reply To: Return to Shop link

#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,