Comments System

6/recent/ticker-posts

How to Redirect WooCommerce to a Custom Thank You Page After Checkout

 How to Redirect WooCommerce to a Custom Thank You Page After Checkout

/**

 * Redirect WooCommerce to a custom page after checkout (CODE)

 */

add_action( 'woocommerce_thankyou', 'reialesa_redirect_woo_checkout');

function reialesa_redirect_woo_checkout( $order_id ){

    $order = wc_get_order( $order_id );

    $url = 'https://instatemedia.com/thank-you/';

    if ( ! $order->has_status( 'failed' ) ) {

        wp_safe_redirect( $url );

        exit;

    }

}


Post a Comment

0 Comments