Skip to content

Instantly share code, notes, and snippets.

@wapcrazut
Last active February 26, 2018 13:11
Show Gist options
  • Save wapcrazut/127286b5ba584a3a668ca5088e96eb59 to your computer and use it in GitHub Desktop.
Save wapcrazut/127286b5ba584a3a668ca5088e96eb59 to your computer and use it in GitHub Desktop.
Set homepage as default "Return to Shop" button URL in cart page. (Wordpress & Woocommerce)
// Set homepage as default "Return to Shop" button URL in cart page.
function wc_empty_cart_redirect_url() {
return get_home_url();
}
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