/
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>
, multiple selections available,
Related content
Activate the manual cookie-blocking mode
Activate the manual cookie-blocking mode
More like this
Cookiebot auf einzelnen Seiten ausblenden
Cookiebot auf einzelnen Seiten ausblenden
More like this
Hide Usercentrics on individual pages
Hide Usercentrics on individual pages
More like this
Script adjustments (Javascript)
Script adjustments (Javascript)
More like this
Script-Adjustment (Javascript only)
Script-Adjustment (Javascript only)
More like this
Google Tag Manager Anpassungen
Google Tag Manager Anpassungen
More like this