Go to them edit Function.php
Past this code on Last of The Colum
video link https://www.youtube.com/watch?v=scwoeFpl-fM
/** * Redirect WooCommerce to a custom page after checkout */ add_action( ‘woocommerce_thankyou’, ‘reialesa_redirect_woo_checkout’); function reialesa_redirect_woo_checkout( $order_id ){ $order = wc_get_order( $order_id ); $url = ‘your URL here’; if ( ! $order->has_status( ‘failed’ ) ) { wp_safe_redirect( $url ); exit; } }