Skip to content

Instantly share code, notes, and snippets.

@webmasterninjay
Created July 10, 2015 14:41
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webmasterninjay/45fd3fad114a6a4a2862 to your computer and use it in GitHub Desktop.
Save webmasterninjay/45fd3fad114a6a4a2862 to your computer and use it in GitHub Desktop.
Woocommerce - Redirect after payment
<?php
/* Redirect user after check out */
add_action( 'template_redirect', 'jay_custom_redirect_after_purchase' );
function jay_custom_redirect_after_purchase() {
global $wp;
if ( is_checkout() && ! empty( $wp->query_vars['order-received'] ) ) {
wp_redirect( 'http://www.yoururl.com/your-page/' );
exit;
}
}
@Collinsmbaka
Copy link

How can I use this code to redirect to the specific course the user purchases?
I have 4 courses on my website, and the user can buy any of the four

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment