This snippet enhances the post-purchase experience by directing customers to a tailored thank you page.
add_action('woocommerce_thankyou', 'redirect_after_payment');
function redirect_after_payment($order_id) {
$order = wc_get_order($order_id);
if ($order->get_status() === 'completed') {
wp_redirect('https://yourdomain.com/thank-you'); // Custom thank you page URL
exit;
}
}