Skip to content

Instantly share code, notes, and snippets.

@woogist
Created January 29, 2015 13:17
Show Gist options
  • Save woogist/b2a974bc069e2c6eaa75 to your computer and use it in GitHub Desktop.
Save woogist/b2a974bc069e2c6eaa75 to your computer and use it in GitHub Desktop.
Set a custom add to cart URL to redirect to
/**
* Set a custom add to cart URL to redirect to
* @return string
*/
function custom_add_to_cart_redirect() {
return 'http://www.yourdomain.com/your-page/';
}
add_filter( 'woocommerce_add_to_cart_redirect', 'custom_add_to_cart_redirect' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment