Skip to content

Instantly share code, notes, and snippets.

@qutek
Created April 10, 2014 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qutek/10354331 to your computer and use it in GitHub Desktop.
Save qutek/10354331 to your computer and use it in GitHub Desktop.
Woocommerce Redirect After Clicking "Place Order" Button
<?php
/*========================================================
Custom Thankyou Page Woocommerce
Woocommerce snippest to redirect user after order sucessed
Place it to functions.php in theme directory
=========================================================*/
add_action( 'woocommerce_thankyou', function(){
global $woocommerce;
$order = new WC_Order();
if ( $order->status != 'failed' ) {
wp_redirect( home_url() ); exit;
}
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment