Skip to content

Instantly share code, notes, and snippets.

@eltondev
Last active August 29, 2015 14:27
Show Gist options
  • Save eltondev/ddc4965e12892f23cf62 to your computer and use it in GitHub Desktop.
Save eltondev/ddc4965e12892f23cf62 to your computer and use it in GitHub Desktop.
WooCommerce Checkout Redirect Thank You
<?php
add_action( 'woocommerce_thankyou', 'redirectcustom');
function redirectcustom( $order_id ){
$order = new WC_Order( $order_id )
$url = 'http://marcelototoso.com/custom-url';
if ( $order->status != 'failed' ) {
wp_redirect($url);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment