Copy and paste the following snippet inside your functions.php on your child theme.
add_filter( 'woocommerce_return_to_shop_redirect', 'wpslash_change_return_shop_url');
function wpslash_change_return_shop_url()
{
return home_url();
}
Copy and paste the following snippet inside your functions.php on your child theme.
add_filter( 'woocommerce_return_to_shop_redirect', 'wpslash_change_return_shop_url');
function wpslash_change_return_shop_url()
{
return home_url();
}