ניתן להטמיע בדף הנחיתה את הקוד המצורף
תחת עריכת דף נחיתה > הגדרות > הגדרות מתקדמות > קודי מעקב > קוד (Head)
להלן קוד להטמעה:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent/3.1.1/cookieconsent.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent/3.1.1/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function () {
window.cookieconsent.initialise({
palette: {
popup: { background: "#2e2e2e" },
button: { background: "#0078d4" }
},
position: "bottom-right",
type: "opt-in",
content: {
message: "We use cookies to ensure you get the best experience.",
dismiss: "Got it!",
allow: "Accept",
deny: "Decline",
link: "Learn more",
href: "https://www.smoove.io/privacy-policy/"
}
});
});
</script>