Last active
June 19, 2022 13:47
-
-
Save rashmimalpande/2ac56734e9ca9ec767074a9a0a57a02f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'woocommerce_thankyou', 'redirect_product_based', 1 ); | |
function redirect_product_based ( $order_id ){ | |
$order = wc_get_order( $order_id ); | |
foreach( $order->get_items() as $item ) { | |
// Add whatever product id you want below here | |
if ( $item['product_id'] == 643 ) { | |
// change below to the URL that you want to send your customer to | |
wp_redirect( 'http://yoururl.com/custom-thank-you/' ); | |
} | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi i need this for multipe products please