Skip to content

Instantly share code, notes, and snippets.

@hemusyl
Forked from woogist/functions.php
Created January 30, 2016 05:29
Show Gist options
  • Save hemusyl/d5ed5e03604eaca1c2ce to your computer and use it in GitHub Desktop.
Save hemusyl/d5ed5e03604eaca1c2ce 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