Guide · 13 min read

📊 Google Analytics 4 Setup UK — The 2026 Complete Configuration Playbook

Universal Analytics shut down in July 2023. GA4 is the only Google Analytics that exists in 2026. The full UK 2026 playbook covering event-first thinking, conversion configuration, consent-mode, ecommerce setup, BigQuery export and the privacy-aligned implementation that actually works.

TL;DR

GA4 setup in 2026 requires: a proper data-stream and tag configuration, event-first conversion definitions (not URL-based goals), consent-mode v2 implementation aligned with UK GDPR and PECR, ecommerce parameters for ecommerce sites, BigQuery export for serious analysis, and cross-domain tracking where applicable. Most UK SMB GA4 implementations are missing 4-6 of these layers; the gap is the analysis blind spot.

Google Analytics 4 has been the default Google Analytics since July 2023 when Universal Analytics shut down. Three years on, most UK SMB GA4 implementations are still half-configured — basic page-views and traffic-source reporting working, but the conversion configuration, ecommerce parameters, consent-mode and BigQuery export missing. This guide is the complete UK 2026 playbook for the configuration most SMB sites should have but typically do not.

What GA4 actually is

GA4 is a fundamentally different analytics product from Universal Analytics. Event-first rather than session-first — every interaction is an event with structured parameters. Cross-platform by default — a single property tracks web, iOS app and Android app under one identity model. Privacy-first by design — IP anonymisation is implicit, the user model relies less on persistent identifiers, consent-mode integrates more deeply. Predictive metrics native — purchase probability, churn probability, revenue prediction built into the platform. The conceptual shift from Universal Analytics is meaningful and most teams underestimate how much of their UA knowledge does not transfer.

1. Property and data-stream structure

Start with one GA4 Property per organisation, with one Data Stream per platform (web, iOS app, Android app). Avoid the common mistake of creating multiple Properties for what is really one organisation — cross-Property analysis is limited and you lose the unified user view that GA4’s identity model is built around. The Data Stream is where the measurement ID lives; the gtag.js script or Google Tag Manager configuration references the Data Stream measurement ID.

2. Enhanced Measurement and the automatic events

GA4’s Enhanced Measurement automatically tracks several event types: page_view, scroll (90% scroll depth), click (outbound links), site_search (URL query parameters), video_start / video_progress / video_complete (YouTube embeds), and file_download (clicks on common file extensions). Enable Enhanced Measurement on the Data Stream but be specific about which automatic events you want — some create noise more than signal. Scroll events at 90% are typically not the right threshold; consider whether you want them. Click events on outbound links are usually valuable; site_search is usually valuable if your site has search.

3. Custom event configuration

Beyond the Enhanced Measurement automatics, define the events that matter to your business. Common SMB custom events: form_submit (every lead form), generate_lead (every qualified form submission with the lead value where calculable), contact_call (every tappable phone-number click), purchase (every transaction with full ecommerce parameters), add_to_cart (every basket add), view_item (every product page view). Each event carries parameters describing the action (form_id, lead_value, product_id, etc.). Send events via gtag.js, Google Tag Manager, or directly via the Measurement Protocol for server-side use cases.

4. Conversion configuration

GA4’s "Conversions" (renamed "Key Events" in late 2024) are the events that count as primary objectives. Mark the events that matter as conversions inside the Admin → Conversions panel (or, in newer terminology, Admin → Events → toggle "Mark as conversion"). Common SMB conversions: generate_lead, purchase, contact_call. Each conversion carries its own conversion-rate, conversion-by-source, conversion-by-campaign reports automatically.

Consent-mode v2 is the GA4 mechanism for respecting user consent under UK GDPR and PECR while still capturing useful analytics. The flow: the consent banner captures user choice (analytics_storage = granted or denied, ad_storage = granted or denied). gtag.js or GTM passes the consent state to GA4 before any event fires. Where consent is denied, GA4 receives pinged events but stores no identifiers; the data feeds modelled conversions in Ads but does not create individual user profiles. The implementation is technical and easy to misconfigure — common mistakes include firing events before consent is established, or not passing consent updates when the user changes their choice.

6. Ecommerce setup

For ecommerce sites, the GA4 ecommerce parameters need to be sent on every relevant event. view_item with currency, value, items[] (each item with item_id, item_name, item_brand, item_category, item_variant, price, quantity). add_to_cart with the same items[] structure. begin_checkout, add_payment_info, add_shipping_info, purchase. Each event needs the correct parameter shape; getting them right unlocks the full GA4 ecommerce reporting suite (purchase journey, checkout funnel, product performance, revenue attribution). Shopify, BigCommerce and most ecommerce platforms emit these natively where the GA4 integration is configured.

7. BigQuery export

BigQuery export is free on the standard GA4 (was paid on the legacy GA360 Universal Analytics). Configure it once and GA4 streams every event into BigQuery for SQL analysis. For SMB sites this is often unused — the in-platform reporting covers the basic needs — but for any site with material data analysis ambitions, BigQuery export is genuinely useful: custom funnel analysis, cohort analysis, multi-touch attribution, joining analytics data with offline CRM data. The setup is one toggle inside Admin → BigQuery Linking.

8. Cross-domain tracking

For sites that span multiple domains (the marketing site at example.com and the booking flow at app.example.com, or the main brand at brand.co.uk and the secondary brand at brand.de), cross-domain tracking links them under a single user identity in GA4. Configure inside Admin → Data Streams → Configure tag settings → Configure your domains. Add every domain that is part of the user journey. Without this, every domain hop starts a new session and the funnel reporting breaks.

9. Internal traffic filtering

Filter out internal traffic so the analytics reflects real visitors. Inside Admin → Data Streams → Configure tag settings → Define internal traffic. Define the IP addresses or IP ranges your team uses. Then Admin → Data Filters → toggle the Internal Traffic filter from Testing to Active. Without this, your office and home IPs distort the conversion-rate analysis.

10. The audit checklist

Eight checks every GA4 implementation should pass. (1) Real-time report shows your traffic correctly when you load the site in incognito. (2) Conversions panel lists the right key events marked as conversions. (3) Ecommerce reports show transactions correctly if you have ecommerce (test purchase if necessary). (4) Consent-mode shows the expected granted/denied breakdown matching your consent banner data. (5) Internal traffic is filtered. (6) BigQuery export is configured if you need it. (7) Cross-domain tracking is configured if you span multiple domains. (8) Google Ads and Google Search Console are linked for the cross-product reporting.

Common mistakes

Five recurring failures in UK SMB GA4 audits. (1) Universal Analytics tag still firing alongside GA4 — wasted bandwidth, conflicting data. (2) Conversions configured at the page-URL level rather than event level — misses the actual interaction. (3) Consent-mode not configured at all (or configured incorrectly), producing either over-collection (privacy risk) or under-collection (modelled-conversion accuracy loss). (4) Ecommerce parameters partially correct (purchase events firing but without the items[] array), breaking the funnel reports. (5) BigQuery export never enabled, leaving meaningful analysis depth on the table.

FAQ

Common questions

How long does a proper GA4 setup take?

For a typical UK SMB site without complex ecommerce or cross-domain tracking, 4-8 hours of focused configuration work. Add 4-8 hours for ecommerce setup with the full parameter shape. Add 2-4 hours for consent-mode v2 implementation if it is being done properly.

Do I need Google Tag Manager?

Not strictly — gtag.js directly works for most SMB sites. But GTM makes the implementation more maintainable, particularly for sites that fire events from multiple sources (form submissions, ecommerce events, custom interactions). For ongoing analytics work GTM is the more common production setup.

What about Universal Analytics historical data?

Universal Analytics data ceased to be accessible in July 2024. If you needed historical UA data for compliance or longitudinal analysis, the export window has closed and the data is gone. GA4’s data history begins from the day you configured GA4.

Does GA4 work properly with consent denied?

Yes, with consent-mode v2. Consent-denied users still ping GA4 but with no identifiers. GA4 uses these pings to model conversions and traffic at aggregate level. Ad performance reporting in Google Ads relies on this modelled data to fill the gap consent-denied users create.

How do I know if my GA4 setup is right?

Run the audit checklist (see above). If you fail more than two checks, the setup needs work. The biggest tell is whether the conversion data in GA4 matches what you observe operationally — if your CRM says you got 50 leads last month and GA4 says 12, something is broken in the conversion configuration.

What about server-side tagging?

Server-side GTM is increasingly common in 2026 for performance and privacy reasons — client-side scripts get smaller, third-party cookies get fewer, more accurate data flows. For SMB sites it adds operational complexity that often is not worth it; for sites with material privacy or performance constraints it can be the right move.

Related services

Want it done for you?

The services below apply this guide directly to your site as a one-off engagement.

Same-Day WebsiteRedesign
About this guide

How we wrote this guide.

This guide on google analytics 4 setup uk was drafted by a senior member of the Same Day Website Launch editorial team — engineers and strategists who ship commercial UK websites every week. Every numerical claim that could be verified is cited to a primary source: the ICO’s published fee schedule, Google’s developer documentation, the platform’s public price page, the original peer-reviewed study, the regulator’s announcement. Where the guide makes claims from our own client data (response rates, conversion lift, build timelines), the data source is named explicitly. Where the guide offers an opinion, it is marked as opinion.

The guide is reviewed by a second member of the team before publication, fact-checked against the cited sources, and dated. When the underlying facts change — a price moves, a regulation updates, a Google algorithm shifts — we update the guide in place, add a dated correction note at the foot, and refresh the modifiedTime in the schema. Guides that have not been touched in 12 months carry a visible “last reviewed” date so the reader can judge currency.

Editorial corrections are welcome at hello@samedaywebsitelaunch.com with the subject line “Editorial correction” — we respond within five working days, update the guide with a dated correction note, and refresh the schema. The intention behind this guide and every guide in the library is the same: produce the resource a UK SMB owner can use to make a defensible decision on the topic without paying for a consultant first.

Why we publish guides

What this library is for.

The guides on this site are not lead-magnets. They are the published answers to the questions clients ask most often before they decide whether to brief us — what is involved in a website migration, how Core Web Vitals affect ranking in 2026, what local SEO actually moves the needle for a small UK business, what UK compliance looks like in practice. Reading the guide should be enough to make the decision; briefing us is the option, not the implied next step.

That editorial stance has a knock-on effect on the kind of inbound the guides generate. The readers who land on these pages and go on to brief a project are reliably the readers for whom the same-day model is the right answer — they have self-qualified through the depth of the content. The conversion rate per visitor on the guide library is materially lower than on the commercial landing pages; the conversion rate per qualified visitor is materially higher. That is the trade we make on purpose.

A closing note

If this guide
helped you decide.

If this guide on google analytics 4 setup uk resolved your question, you do not need to do anything next — the deliberate goal of the guide library is to give you a defensible answer without a sales conversation attached. If the guide raised follow-up questions specific to your situation, the brief form on the get-started page is the right channel; we reply inside 30 minutes during the working window with a real-human response from the same team that drafted this guide. And if the answer is genuinely that the same-day model fits your specific case, the brief itself takes ten minutes and the build is live by 6 PM the next trading day.

Skip the reading

Want it
built for you?
From £699.

Most of these guides end with “or you could brief us and have it shipped by 6 PM”. One-off pricing, no monthly fees.