• Resolved noluckrequired

    (@noluckrequired)


    everything was working well until the middle of September, then my astra pro license wouldnt update. I have since paid for the membership and now whenever you go to login, then join and pay for the membership. it will accept the fee but it no longer redirect the customer to the Events calendar so they may download their purchase. HELP!

    thank you

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Thread Starter noluckrequired

    (@noluckrequired)

    thank you, I will try that route ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.