Hi Team, As part of Consent Preferences settings, we have configured all tags under 2 categories and Only 1 tag as "Omit tags". But when we looked at utag.js file, the 'ot' array has some other non-omitted tags also. And because of this, these are tags are always loading even if user opt-outs the 2 categories in preferences. Can you please suggest on 1. how to resolve this issue ? 2. how this "ot" gets set in utag.js ? 3. Do we have control to update/change it through an extension/anything? Code in Utag.js referenced: applyConsentState: function() { try { var i, lc = utag.loader.cfg, cs = utag.gdpr.getConsentState(), ot = { "147": 1, "201": 1, "83": 1, "239": 1, "125": 1, "266": 1, //This is the ONLY tag, we intentionally omitted. "110": 1 }; ...
... View more