Skip to content

Instantly share code, notes, and snippets.

Created March 21, 2016 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/aae3fc765a491a4842e6 to your computer and use it in GitHub Desktop.
Save anonymous/aae3fc765a491a4842e6 to your computer and use it in GitHub Desktop.
<?php
/**
* Redirect users after add to cart.
*/
function my_custom_add_to_cart_redirect( $url ) {
$url = wc_get_checkout_url();
return $url;
}
add_filter( 'woocommerce_add_to_cart_redirect', 'my_custom_add_to_cart_redirect' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment