Skip to content

Instantly share code, notes, and snippets.

@cccamuseme
Created August 22, 2019 19:37
Show Gist options
  • Select an option

  • Save cccamuseme/2906f7f924dc550814898811d5d7aaa3 to your computer and use it in GitHub Desktop.

Select an option

Save cccamuseme/2906f7f924dc550814898811d5d7aaa3 to your computer and use it in GitHub Desktop.
woocommerce checkout redirect
add_action( 'template_redirect', 'woo_custom_redirect_after_purchase' );
function woo_custom_redirect_after_purchase() {
global $wp;
if ( is_checkout() && !empty( $wp->query_vars['order-received'] ) ) {
wp_redirect( 'https://escatech.us/new-order-thankyou/' );
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment