Ernst: HoogEigenaar: DevelopmentTijd om te fixen: 1-3 h
Third-party requests vóór toestemming
Voorkom dat optionele leveranciers netwerkrequests doen voordat de bezoeker heeft gekozen of hij ze toestaat.
Dekt: pre_consent_third_party_request, third_party_data_flow_before_consent
Waarom dit belangrijk is
Zelfs wanneer cookies worden geblokkeerd, kunnen third-party requests nog steeds IP-adressen, identifiers of paginametadata versturen vóór de keuze van de gebruiker. Dat blijft een compliance-risico.
Hoe je dit handmatig controleert
- 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.
Typische oorzaken
- 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.
Fix in 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.
Fix in WordPress of 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.
Algemene developersfix
- 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.
Hoe je bevestigt dat de fix werkt
- 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.
Volgende stap
Voer na deployment opnieuw een scan uit om te bevestigen dat het runtimegedrag is veranderd en niet alleen de bannertekst.