Home New Guten Forums WoodMart support forum Redirect Thank-You-Page

Redirect Thank-You-Page

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #669351

    DBP
    Participant

    Hi,

    i would like to redirect the thank you page. I´ve tried the following snippet in my function.php but nothing happend. What must be done to use the redirect snippet or how to alter it?

    add_action( ‘woocommerce_thankyou’, ‘bbloomer_redirectcustom’);

    function bbloomer_redirectcustom( $order_id ){
    $order = wc_get_order( $order_id );
    $url = ‘https://yoursite.com/custom-url’;
    if ( ! $order->has_status( ‘failed’ ) ) {
    wp_safe_redirect( $url );
    exit;
    }
    }

    Kind regards

    #669376

    DBP
    Participant

    I solved the problem by switching to the standard woo thank you page behavoiur via the woddmart theme settings. You can close this thread.

    #669476

    Hung Pham
    Keymaster

    Hi DBP,

    Glad to hear your issue has been resolved. Keep us in mind for future questions and concerns, we’re always here to help!

    Regards,
    Hung PD

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘Redirect Thank-You-Page’ is closed to new replies.