Alvorlighed: HøjAnsvarlig: UdviklingTid til rettelse: 1-3 h
Tredjepartsrequests før samtykke
Stop valgfrie leverandører fra at foretage netværkskald, før den besøgende har besluttet, om de må tillades.
Dækker: pre_consent_third_party_request, third_party_data_flow_before_consent
Hvorfor det betyder noget
Selv hvis cookies blokeres, kan tredjepartsrequests stadig overføre IP-adresser, identifikatorer eller sidemetadata før brugerens valg. Det skaber stadig compliance-risiko.
Sådan verificerer du manuelt
- Load the page in incognito and inspect third-party requests before any consent action.
- Group requests by provider: analytics, ads, chat, video, fonts, tag manager, consent platform.
- Check whether requests are essential or optional for baseline site functionality.
Typiske årsager
- Third-party scripts load from the page template before the CMP decides.
- Optional widgets self-initialize on page load.
- Consent only blocks cookies but not network requests or remote script fetches.
Rettelse i GTM
- Move optional vendor tags behind consent conditions instead of firing on all page views.
- Audit custom HTML tags that pull remote scripts directly.
- Separate essential operational tags from analytics and marketing vendors.
Rettelse i WordPress eller CMP-plugins
- Review theme, plugin, and page-builder integrations that inject third-party widgets globally.
- Disable auto-embed or auto-load features for optional tools until consent is granted.
- Retest pages after cache purge and plugin optimization layers are cleared.
Generel udviklerrettelse
- Defer optional third-party scripts until consent is granted.
- Lazy-load integrations on user action where possible.
- Replace non-essential always-on embeds with click-to-load placeholders.
Sådan bekræfter du, at rettelsen virker
- Confirm that only essential third-party requests remain before consent.
- Accept optional consent and verify optional vendors load only afterward.
- Run a fresh scan and compare the third-party request inventory.
Næste skridt
Kør en ny scanning efter deployment for at bekræfte, at den faktiske runtime-adfærd ændrede sig, og ikke kun bannerteksten.