/
Hide Cookiebot on individual pages
Hide Cookiebot on individual pages
To hide the CMP on individual pages, you have the following options:
Option 1
Hide the banner via CSS. To do this, add the following code to the CSS of the page on the corresponding pages.
#CybotCookiebotDialog {
display:none!important;
}
Option 2
Alternatively, a function (global) can be defined
function hideCookieBanner() {
var CybotCookiebotDialog = document.getElementById("CybotCookiebotDialog");
CybotCookiebotDialog.style.setProperty("display","none","important");
}
and then executed on the appropriate pages using the following script tag.
<script>
hideCookieBanner();
</script>