At the end of 2023, Google introduced the “Google Consent Mode v2” to use their tracking and ad services. While in March 2024, it’s mandatory to use that within the European Union to be GPDR compliant.
So let’s dive into what there’s to know and how to implement it.
Basic Mode vs Advanced Mode
When looking into the docs, Google differentiates between two different modes. The difference to implement technically are the same. Just the user flow is different.
Basic Consent Mode
The user isn’t forced to immediately make a consent decision (accept/deny) before accessing the website. The consent banner can appear, but users can still browse and interact with the site without explicit consent.
Basic Mode: Keeps data anonym and allows opt-in with a banner and a less destructive user experience.
The Google Tag Manager is implemented right on the initialisation of the page. The consent mode is set to “default”, which means all Google tags (e.g., for Analytics, Ads) behave as if consent has been denied until the user actively provides consent. Once the user accepts consent, the full tracking behavior (e.g., storing cookies) resumes.
Denied doesn’t mean no data is sent. There is some anonymous data sent which is still very useful for statistics. Google tags send cookieless pings, which means functional information like timestamp user agent or referrer is sent. Those do not identify a user but are still valuable data.
Advanced Consent Mode
In Advanced Mode, the site requires explicit consent before processing data. Depending on the implementation, this mode might necessitate blocking certain functionalities or the entire site until the user has accepted or denied the consent. This stricter enforcement ensures no data is processed before the user’s consent is confirmed. This make it compliant with GDPR
where explicit opt-in consent is mandatory and therefor needs you to add a dialog box before the user can interact with the website.
Advanced Mode: 100% GDPR compliant. A dialog box before using the website is needed and therefore less user-friendly.
The Google Tag Manager isn’t loaded at all during the page initialisation. No data is tracked in any way. This leads to the fact that from a marketing perspective, the user has never visited the website. Since the user has to accept to start to initialize the tracking, it’s most common to add a prominent banner to ask for consent.
User flow
There are always different options on how to ask a user for their consent to track personalised data. It’s very depending on how hard you’re trying the get full data from every user and therefore the user experience can be very bad or enhanced. Overall the current situation with those consents are for sure not an improvement in the overall user experience. Maybe this will change at some point if there are global browser settings which can be set as default.
For now, we can be very liberal about how we ask the user for consent with a banner and respect the “privacy setting” of the browser and do not track at all then. Or we block access usage of the full site with a dialog box where we almost force the user to accept the consent.
I go a route which impacts the user the least, but at the same time, makes most users allow the consent to have valuable data. There’s no general advice, it depends on each case.
Implementation
The Google documentation is pretty understandable and has some more in-depth examples. Although I want to quickly give you an example of how to do it.
The Tag Manager can be loaded like that with a default argument sent within the consent property. This will send only limited data.
gtag('consent', 'default', {
'ad_user_data': 'denied',
'ad_personalization': 'denied',
'ad_storage': 'denied',
'analytics_storage': 'denied'
}); // needs to be passed before the config
gtag('config', 'G-xyz');
When going the route with the Advanced Mode, the Tag Manager can only be loaded after the user consented. This also means that no “default” has to be sent since it’s the user already decided on the “denied” or “granted” option.
Going with the Basic Mode, the consent can be updated after a user has accepted the “cookie banner” which the following code.
const cookieBannerAccepted = function()
gtag('consent', 'update', {
'ad_user_data': 'granted',
'ad_personalization': 'granted',
'ad_storage': 'granted',
'analytics_storage': 'granted'
});
// More scripts can be loaded here in case
}
Testing
After the implementation or usage of some plugins/extensions, you want to check if everything is correct and things are behaving in the intended way.
Google provides a tool for that, which is documented (Verify consent mode implementation). With the help of a browser extension and its verification tool, the consent user flow can be clicked through while Google is tracking every event/step. After finishing you get a overview with all the data and tips about what needs to be improved.