24 Apr 2025
If you're running events and using an external ticket provider like Eventbrite, Ticket Tailor, or similar, tracking the full user journey—from landing on your website to purchasing a ticket—can be tricky. The good news? With Google Analytics 4 (GA4) and proper cross-domain tracking, you can stitch together that full funnel.
In this post, we’ll walk through how to set up a goal funnel in GA4 that includes both your main website and the external ticketing platform.
Before we begin, make sure:
GA4 uses measurement ID–based tagging, so cross-domain tracking must be enabled via Google Tag Manager (GTM) or directly using the gtag.js configuration. Here’s how to confirm it:
Alternatively, if you’re using gtag.js directly:
gtag('config', 'G-XXXXXXX', { 'linker': {
'domains': ['yourdomain.com', 'ticketprovider.com']
}
});
Use the GA Debugger Chrome extension and test a journey from your site to the ticket site. Check that the _gl parameter persists across domains and that session continuity is maintained in GA4.
Here’s a simple example funnel for an event:
You need to ensure each of those funnel steps is tracked as an event.
No extra configuration needed—GA4 tracks these by default.
Use GTM or gtag to create a custom event when the "Buy tickets" button is clicked:
gtag('event', 'buy_ticket_click', {
event_category: 'engagement',
event_label: 'Event XYZ'
});
Check whether your ticket provider supports GA4 e-commerce or custom event tracking. If not, you can still track visits to key URLs (like /checkout or /thank-you) via page_view events and create custom events in GA4 based on those.
In GA4:
While GA4 doesn’t have a traditional “goal funnel” like Universal Analytics, you can use the Funnel exploration report.
Example steps:
Tick the “Open funnel” option if you want to see drop-offs at any point without requiring a strict sequence.
Setting up a GA4 goal funnel for a cross-domain event journey takes a bit more effort, but once it’s in place, you’ll be able to clearly see how users move from interest to purchase—even if the ticket sale happens offsite. With accurate funnel tracking, you can optimise your event marketing with confidence.
Have questions about your setup? Lets chat!
Send us a message today and we will get in touch. We love chatting about events and websites—no pushy sales talk, just a friendly conversation about your event and how we might be able to help.