You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thanks for this fine cookie layer script, I works well for me.
Just a comment; I modified the adsense service, for myself, because if I rejected adsense, the __gpi cookie was sticky. I don't really know what the __gpi cookie does, or if it is relevant, but I just didn't want to let it stick.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
thanks for this fine cookie layer script, I works well for me.
Just a comment; I modified the adsense service, for myself, because if I rejected adsense, the __gpi cookie was sticky. I don't really know what the __gpi cookie does, or if it is relevant, but I just didn't want to let it stick.
Cheers!
Guido
// google adsense
tarteaucitron.services.adsense = {
"key": "adsense",
"type": "ads",
"name": "Google Adsense",
"uri": "https://adssettings.google.com/",
"needConsent": true,
"readmoreLink": "https://policies.google.com/technologies/partner-sites",
"cookies": ['__gads', '__gpi'],
"js": function () {
"use strict";
tarteaucitron.fallback(['adsbygoogle'], '');
tarteaucitron.addScript('https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');
},
"fallback": function () {
"use strict";
var id = 'adsense';
tarteaucitron.fallback(['adsbygoogle'], tarteaucitron.engage(id));
}
};
Beta Was this translation helpful? Give feedback.
All reactions