Last active
February 26, 2018 13:11
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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