Hi Stefan, It seems that isn't supported currently. However you can edit the template Consent Management: General - UID:cmGeneral from Manage Templates interface. Around line 312 there's a logic to create the cookie; You can replace lines 312-318 with this Javascript code var cookie_string = [
utag.gdpr.cookieNS +"="+ encodeURI(mo2Val.join("|")),
"path=" + utag.gdpr.path,
"expires=" + expiry.toGMTString()];
if (utag.gdpr.domain){
cookie_string.push("domain=" + utag.gdpr.domain);
}
if (window.utag_cfg_ovrd && window.utag_cfg_ovrd.consent_cookie_samesite) {
cookie_string.push("SameSite="+window.utag_cfg_ovrd.consent_cookie_samesite);
if (window.utag_cfg_ovrd.consent_cookie_samesite === "None") {
window.utag_cfg_ovrd.consent_secure_cookie = true;
}
}
if (window.utag_cfg_ovrd && window.utag_cfg_ovrd.consent_secure_cookie) {
cookie_string.push("Secure");
} So it will look like this: With that change you can set additional two values on utag_cfg_ovrd object like this: window.utag_cfg_ovrd.consent_cookie_samesite = "None"; // Allowed values are: Lax, Strict or None
window.utag_cfg_ovrd.consent_secure_cookie = true; If you set consent_cookie_samesite to None then Secure directive will be automatically added. Best Regards, Adam
... View more