Hello @noluckrequired
To fix the redirection issue after Stripe payment, you can use the Redirection for WooCommerce plugin to set up a custom redirect after a successful purchase. Alternatively, add this code snippet to your theme’s functions.php:
add_action(‘woocommerce_payment_complete’, ‘redirect_to_events_calendar’);
function redirect_to_events_calendar() {
wp_redirect(‘your-events-calendar-url’);
exit;
}
Replace ‘your-events-calendar-url‘ with the actual URL of your Events Calendar. This should ensure customers are redirected post-payment.
You are using the commercial Events Calendar Pro plugin. I would therefore recommend that you contact their support: https://theeventscalendar.com – questions about commercial products are not permitted here in the forum.
thank you, I will try that route 🙂
