Woocommerce thank you page after checkout

Woocommerce thank you page after checkout

I think it is time to add the below code snippet to woocommerce to enable custom thank you page.

add_action( 'woocommerce_thankyou', 'redirectcustom');
function redirectcustom( $order_id ){
$order = new WC_Order( $order_id );
$url = 'http://yoursite.com/custom-url';
if ( $order->status != 'failed' ) {
wp_redirect($url);
}
}

Leave a comment