
/** WooCommerce: Redirect to Custom Thank you Page */ add_action( 'woocommerce_thankyou', 'redirectcustom'); function redirectcustom( $order_id ){ $order = wc_get_order( $order_id ); $url = 'https://aras-market.com/thanks'; if ( ! $order->has_status( 'failed' ) ) { wp_safe_redirect( $url ); exit; } }