Skip to content

Instantly share code, notes, and snippets.

@aarifhsn
Created August 6, 2015 10:49
Show Gist options
  • Save aarifhsn/0475bdb4bc6d87cf1395 to your computer and use it in GitHub Desktop.
Save aarifhsn/0475bdb4bc6d87cf1395 to your computer and use it in GitHub Desktop.
/**
* 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