Hello, I am wondering if it is possible to change the display / persistence of the GDPR consent prompt banner? Currently it looks like it will display the prompt if the CONSENTMGR cookie does not exist. It will then set the cookie as a session cookie and automatically fade out the banner after 3 minutes: document.cookie = 'CONSENTMGR=c%7Cts:' + new Date().getTime() + '%7Cconsent:true;path=/;domain=xxx'
setTimeout(function () {
$('#__tealiumGDPRecModal').fadeOut(1500);
}, 180000) Because the cookie has been set, it will no longer display the banner during that session: if (utag.gdpr.consent_prompt.isEnabled) {
if (!utag.gdpr.consent_prompt.noShow) {
if (!utag.gdpr.getConsentState()) {
utag.gdpr.showExplicitConsent();
}
}
} My team is looking to actually keep the banner active on the site until a decision is explicitly made. We have added a deny button to close the banner, but if the user doesn't deny or accept, the banner should not disappear and should display on every page. I have not been able to find a configuration value to override the default display / disappear behavior. Is this possible?
... View more