Gravedad: AltaResponsable: Admin CMPTiempo de corrección: 1-2 h
Incoherencia en Google Consent Mode
Corrija los casos en los que las etiquetas de Google actúan como si hubiera consentimiento concedido aunque el estado en ejecución indique denied.
Cubre: consent_mode_mismatch, consent_mode_default_granted, consent_mode_runtime_conflict
Por qué es importante
Si Consent Mode señala denied pero las solicitudes de Analytics o Ads siguen cargando, el sitio solo aparenta cumplimiento. Lo habitual es una configuración incoherente de defaults, etiquetas o actualizaciones en runtime.
Cómo verificarlo manualmente
- Open the site in a fresh session and inspect Google requests before any banner interaction.
- Check whether Consent Mode defaults are set to denied before Google tags initialize.
- Compare runtime consent state against actual network behavior after Accept and Reject.
Causas típicas
- Consent defaults are set too late, after Google tags already loaded.
- GTM tags ignore consent checks even though Consent Mode is enabled.
- Banner updates UI state but does not send a matching consent update to Google.
Corrección en GTM
- Use Consent Initialization for your default denied state before any analytics or ads tags run.
- Require consent checks on GA4, Google Ads, Floodlight, and remarketing tags.
- Audit custom HTML tags that may load Google scripts outside GTM consent controls.
Corrección en WordPress o plugins CMP
- Enable Consent Mode integration in your CMP plugin if available.
- Verify that plugin-generated consent events fire before GA4 or Ads plugins load.
- Disable duplicate analytics plugins that bypass the CMP integration.
Corrección genérica para desarrolladores
- Initialize Google tags only after a denied-by-default consent state is established.
- Send explicit consent updates on accept and reject actions.
- Ensure fallback defaults are denied whenever consent state is unknown.
Cómo confirmar que la corrección funciona
- Reject optional consent and confirm that Google analytics or ads requests do not fire.
- Accept consent and confirm requests start only after the consent update.
- Run a fresh scan and verify the mismatch finding disappears.
Siguiente paso
Vuelva a ejecutar el escaneo después del despliegue para confirmar que cambió el comportamiento real en tiempo de ejecución y no solo el texto del banner.