Solution to setting currency in Eventbrite, using GBP instead of USD

Home Forums Ticket Products Eventbrite Tickets Solution to setting currency in Eventbrite, using GBP instead of USD

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #955542
    Mark
    Participant

    Out of the box the Events Calendar Eventbrite tickets plugin creates events with prices in USD. I needed the price to always be in GBP and found plenty of people looking for the same thing. This works for me:

    add_filter(‘tribe_events_eb_request’, function ($request) {
    return $request . ‘&currency=GBP’;
    });

    It works because the Eventbrite API will accept a currency parameter and the class lib/eventbrite-api.class.php provides a filter just prior to sending the API request that allows us to modify the URL.

    #955553
    Brian
    Member

    Hi,

    We have this article to explain how to change the Currency.

    https://theeventscalendar.com/knowledgebase/change-the-currency-for-eventbrite-tickets/

    Does that work for you?

    #968579
    Brian
    Member

    Since there is has not been any activity on this thread for over 2 weeks so I am now closing it. Feel free to start a new thread if you have further issues. Thanks! 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Solution to setting currency in Eventbrite, using GBP instead of USD’ is closed to new replies.