What we check
Checks the four Consent Mode V2 parameters in gtag(consent, ...).
Why it matters
Since March 2024 Google requires all four consent parameters for Ads, otherwise no conversion modelling.
Common causes
- Consent Mode is "enabled", but only the two old parameters (
ad_storage,analytics_storage) are set.ad_user_dataandad_personalizationhave been missing since the mandatory V2 update. - The default snippet sits in the tag manager instead of the HTML and loads too late, the classic race condition on SPAs.
- The CMP categories were never mapped to the Consent Mode parameters. The banner collects consents, gtag never hears about them.
- A template or plugin sets the parameters only on subpages, the homepage loads without a default state.