Skip to content

Instantly share code, notes, and snippets.

@omniacode
Created January 10, 2020 17:00
Show Gist options
  • Save omniacode/092c3a140cf24fe5bb8c51bf36ce78a3 to your computer and use it in GitHub Desktop.
Save omniacode/092c3a140cf24fe5bb8c51bf36ce78a3 to your computer and use it in GitHub Desktop.
Change Resturn to Shop Redirect URL
/**
* Changes the redirect URL for the Return To Shop button in the cart.
*
* @return string
*/
function wc_empty_cart_redirect_url() {
return 'http://mywebsite.com/sample-page/';
}
add_filter( 'woocommerce_return_to_shop_redirect', 'wc_empty_cart_redirect_url' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment