implement IUBENDA CMP on nextjs (we might get sued)
Unanswered
Havana posted this in #help-forum
HavanaOP
Hi, i'm working on a project that's using
It ain't working. Cookies for GA, GTM, etc are being set immediately. This is the current implementation. Anybody so kind to avoid us getting sued? Thanks
iubenda
to show a cookie banner. IT's supposed to stop all tracking scripts until cookie consent is given.It ain't working. Cookies for GA, GTM, etc are being set immediately. This is the current implementation. Anybody so kind to avoid us getting sued? Thanks
2 Replies
HavanaOP
function GoogleTagManager() {
if (!GTM_ID) {
return null;
}
return (
<Script
id="google-tag-manager"
dangerouslySetInnerHTML={{
__html: `
gtm script here
`,
}}
/>
);
}
function Iubenda() {
if (!IUBENDA_SITE_ID) {
return null;
}
return (
);
}
export function CookieBanner() {
return (
);
}
@Havana Hi, i'm working on a project that's using `iubenda` to show a cookie banner. IT's supposed to stop all tracking scripts until cookie consent is given.
It ain't working. Cookies for GA, GTM, etc are being set immediately. This is the current implementation. Anybody so kind to avoid us getting sued? Thanks
can't you just display notification that site uses cookies? Idk if its complaiant with GDPR or what is this shit law called but thats can be a way