Published: Jul 15, 2026

· 11 min read
This article is also available in German: Deutsche Version

Google Consent Mode v2: What European Businesses Need to Know in 2026

Consent Mode v2 is mandatory since March 2024. Basic mode leaves 40%+ of your traffic invisible to Smart Bidding. Here's how Advanced mode recovers your data.

ON
Oleksandr Nikitin
Google Consent Mode v2: What European Businesses Need to Know in 2026

TL;DR: Google Consent Mode v2 has been mandatory for all EEA advertisers since March 2024. Basic mode kills your conversion data — 40%+ of users become invisible to Smart Bidding. Advanced mode recovers up to 70% of lost conversions through behavioral modeling and improves bidding accuracy by ~30%. Pair it with server-side tracking (see our SST guide) and you have a GDPR-compliant setup that doesn’t sacrifice performance.

Here’s a number that should make every Google Ads manager uncomfortable: in DACH markets, 35–55% of website visitors reject marketing consent when presented with a properly configured cookie banner — no dark patterns, no deceptive UI (Source: Usercentrics, 2024). That’s not a leak. That’s half your data pipeline going dark.

Google’s response was Consent Mode v2, enforced since March 6, 2024, for all advertisers in the European Economic Area and UK. Without it: no new remarketing audiences, no Customer Match processing, and crippled conversion measurement (Source: Google Ads Help, 2024).

Most businesses complied. The question is: did they comply with Basic mode or Advanced mode? Based on our audits of 30+ accounts this year, over 60% are running Basic mode only. And Basic mode is the tracking equivalent of wearing a seatbelt but leaving the airbag disconnected.

Version 1 of Consent Mode was binary: the tag fires or it doesn’t. Version 2 introduced two new consent signals that Google needs for DMA compliance:

  • ad_user_data: Can Google use this user’s data for advertising purposes?
  • ad_personalization: Can Google serve personalized ads to this user?

These signals didn’t exist in v1. Google added them specifically to comply with Article 5(2) of the EU Digital Markets Act, which prohibits combining user data across services without explicit consent (Source: European Commission, Digital Markets Act, 2022).

The enforcement consequence: without correct ad_user_data and ad_personalization signals, Google cannot build new remarketing lists, process Customer Match uploads, or properly attribute conversions. Your campaigns still run. They just run partially blind.

What’s the difference between Basic and Advanced mode?

This is where most implementations go wrong. The distinction isn’t cosmetic — it’s the difference between sending Google zero data on non-consenting users versus sending anonymized pings that power conversion modeling.

CriterionBasic ModeAdvanced Mode
Behavior without consentTags don’t fire. Zero data to Google.Tags fire, but send no personal data. Google receives anonymized pings.
Conversion modeling❌ Impossible — no signal from non-consent users✅ Google models lost conversions using anonymized behavioral signals
Smart Bidding qualitySeverely limited — 40–60% of users invisible~30% improvement in conversion prediction accuracy (Source: Google, 2023)
Remarketing audiencesOnly users who consentedSupplemented by modeled audiences
GDPR compliance✅ Compliant — but data loss✅ Compliant — with data recovery
Implementation effortLow (basic CMP config)Medium (CMP + GTM configuration + testing)
Recommended by Google?No — minimum requirement only✅ Yes — explicitly recommended

Our hot take: Basic mode is compliance theater. It satisfies Google’s enforcement check, but it doesn’t solve your data problem. When 45% of your visitors reject consent, Basic mode means 45% of your Google Ads traffic is invisible to Smart Bidding. You’re not advertising to your full audience — you’re advertising to the half that clicked “Accept.”

Advanced mode isn’t optional. It’s the line between burning budget and optimizing it.

Key Takeaway: Accounts without Consent Mode v2 Advanced see 20–40% fewer reported conversions in Google Ads. These aren’t lost sales — they’re lost signals that Smart Bidding needs to allocate your budget correctly (Source: Canem Errant, aggregated data, 30+ accounts, 2026).

Why does enforcement matter more in Austria specifically?

Austria’s data protection authority (Datenschutzbehörde, DSB) was one of the first in Europe to rule Google Analytics unlawful — the January 2022 decision that sent shockwaves across the continent (Source: Austrian Data Protection Authority, Decision of December 22, 2021).

Since then, enforcement has only intensified. In 2024 and 2025, the DSB issued multiple fines against Austrian companies for deficient consent implementations — not for missing consent banners, but for deceptive ones: pre-checked boxes, misleading button colors, missing reject-without-clicking functionality.

For Consent Mode specifically: Austria’s Telecommunications Act 2021 (TKG 2021, § 165) requires active consent before any cookies or equivalent technologies can be set. Consent Mode Advanced sets no cookies when consent is denied — it only sends anonymized, cookieless pings. That distinction matters in regulatory assessments.

The takeaway for any business operating in the DACH region: technical compliance is a prerequisite, not a defense. Get your CMP configuration legally reviewed. Then make sure the technical implementation actually matches what your lawyers signed off on.

Google Ads’ Smart Bidding strategies — Target CPA, Target ROAS, Maximize Conversions — are machine learning models. They need training data. Every missing conversion is a missing training signal, and the effects compound.

Without Consent Mode v2 Advanced:

  1. Bidding becomes conservative. Google sees fewer conversions → the algorithm underestimates true conversion rate → it bids too low → you lose auctions against competitors with better data.
  2. Audiences shrink. Without modeled audiences, your remarketing lists include only the 55% of users who consented. The other half doesn’t exist for retargeting.
  3. Attribution distorts. Last-click attribution dominates because view-through and cross-device conversions can’t be modeled without complete signals.

With Consent Mode v2 Advanced:

Google uses anonymized pings from non-consenting users to build statistical models. These models recover up to 70% of lost conversions (Source: Google Marketing Platform Blog, 2023). This isn’t exact attribution — it’s behavioral modeling. But it gives Smart Bidding enough data foundation to make ~30% more accurate conversion predictions.

A concrete example from our practice: an Austrian e-commerce account spending €8,000/month on Google Ads saw a 34% increase in reported conversions within 3 weeks of switching from Basic to Advanced mode. Actual revenue didn’t change — the conversions were always there. Google could just finally see them and adjust Smart Bidding accordingly.

The implementation has four steps. You need: a Google Tag Manager container, a compatible Consent Management Platform (CMP), and approximately two hours for initial configuration.

Step 1: Choose and configure your CMP. Compatible CMPs we recommend: Cookiebot, Usercentrics, and Consentmanager. All three support Google’s certified CMP interface and correctly transmit ad_user_data and ad_personalization. Verify your CMP appears on Google’s certified CMP list.

Step 2: Set default consent status in GTM. Create a tag of type “Consent Initialization - All Pages” with default values:

gtag('consent', 'default', {
  'ad_storage': 'denied',
  'ad_user_data': 'denied',
  'ad_personalization': 'denied',
  'analytics_storage': 'denied',
  'wait_for_update': 500
});

Critical: wait_for_update: 500 gives the CMP 500ms to load the actual consent status before tags fire. Without this parameter, tags may fire with the default (denied) status and never update.

Step 3: Implement the CMP update command. When the user makes their consent choice, the CMP must send a consent update command to GTM:

gtag('consent', 'update', {
  'ad_storage': 'granted',
  'ad_user_data': 'granted',
  'ad_personalization': 'granted',
  'analytics_storage': 'granted'
});

Most certified CMPs handle this automatically. Test it anyway: open your browser console, reject cookies, and verify that ad_user_data: denied is correctly set.

Step 4: Enable URL passthrough and Ads Data Redaction. In GTM settings → “Consent Settings,” enable:

  • URL Passthrough: Forwards click IDs (gclid, dclid) even when ad_storage: denied — essential for conversion attribution without cookies.
  • Ads Data Redaction: Masks ad click data when ad_storage: denied — a GDPR safety layer.

What are the most common implementation mistakes?

From our 30+ account audits this year, the three most frequent Consent Mode errors:

Mistake 1: Running Basic mode only. The CMP blocks tags when consent is denied — but sends no anonymized pings to Google. Conversion modeling is impossible. This is the single most common mistake, affecting an estimated 60%+ of Austrian Google Ads accounts.

Mistake 2: Missing ad_user_data and ad_personalization parameters. Many setups from 2023 only send ad_storage and analytics_storage. The v2 parameters were never retrofitted. Result: Google treats the account as non-compliant — no remarketing, no Customer Match.

Mistake 3: Consent signals don’t match CMP categories. The CMP has categories like “Marketing,” “Statistics,” “Necessary.” GTM has ad_storage, analytics_storage, ad_user_data. When these aren’t correctly mapped, a user might reject “Marketing” but ad_user_data: granted still fires — a GDPR violation.

Pro tip: Test the mapping with Google Tag Assistant. In debug mode, you’ll see which consent signals are set for each tag and whether they correctly update after the CMP interaction.

Consent Mode v2 solves the consent problem. Server-side tracking solves the browser problem — ad blockers, ITP, cookie restrictions. Together, they form the complete tracking architecture for 2026. We break this down further in our CAPI vs. Pixel comparison.

With a server-side GTM setup, Consent Mode operates on an additional layer: the server container checks consent status before forwarding data to Google, Meta, or any other platform. That gives you a double-check architecture:

  1. Client-side: GTM in the browser respects consent signals.
  2. Server-side: sGTM on your server verifies consent status again before data leaves your infrastructure.

This combination isn’t just cleaner from a GDPR perspective — it gives you a documented, auditable compliance chain during regulatory inspections. When a data protection authority asks “how do you ensure no data is sent without consent?”, you can show two independent verification layers instead of one.

If you want your entire tracking stack professionally configured with this architecture, check out our Tracking & Analytics services.

What can you do this week?

  1. Check your Consent Mode status. Open Google Tag Assistant, load your website, and look for ad_user_data and ad_personalization as consent signals. Missing? You’re still on v1.
  2. Identify Basic vs. Advanced. Reject cookies and check the Network tab for anonymized pings to google-analytics.com or googleads.g.doubleclick.net. No pings = Basic mode.
  3. Quantify the conversion gap. Compare reported Google Ads conversions against your backend data. The delta shows how much modeling potential you’re leaving on the table.

Bottom Line: Over 60% of accounts are still running Basic mode, leaving 40%+ of conversion signals invisible to Smart Bidding. Advanced mode recovers up to 70% of lost conversions — one €8,000/month account saw reported conversions jump 34% within 3 weeks of switching (Source: Canem Errant, 2026).

Frequently Asked Questions

Basic mode blocks all Google tags until a user consents — you lose 100% of data from non-consenting visitors. Advanced mode sends cookieless, anonymous pings even when consent is denied, allowing Google to model conversions and maintain Smart Bidding accuracy. The difference is 40%+ of conversion signals.

Yes — since March 2024, Google requires Consent Mode v2 for any advertiser using audience features (remarketing, Similar Audiences) in the EEA. Without it, Google stops building audience lists entirely. This applies to all Austrian businesses running Google Ads, regardless of size.

With average Austrian consent rates of 55–65%, Basic mode loses 35–45% of all conversion signals. Advanced mode recovers up to 70% of those lost signals through conversion modeling. One account spending €8,000/month saw reported conversions jump 34% within 3 weeks of switching from Basic to Advanced.

Cookiebot, Usercentrics, OneTrust, and Borlabs Cookie all support native integration with Consent Mode v2. The key requirement is that the CMP sends consent_update signals (for ad_storage, analytics_storage, ad_user_data, ad_personalization) to Google’s consent API before any tags fire.

Advanced mode is designed with GDPR compliance in mind — no cookies are set and no personal data is collected when consent is denied. The cookieless pings contain only aggregate, anonymous signals. However, GDPR compliance also depends on your CMP implementation, privacy policy, and how you handle user data across your entire stack. Consent Mode alone does not make you compliant.


We’ll review your Consent Mode setup in a free 30-minute audit. No slide decks, no sales pitches — just straight talk and actionable recommendations. Request audit →

Ready to scale your performance marketing?

Explore our Services, check out our Case Studies, or schedule a free Discovery Call with us.

consent-modeGDPRgoogle-adsprivacyeurope