Info
Content

Disabling the consent layer

In some cases it is necessary to force the consent layer to now show on a page. In order to achieve this, you can use the following codes:

<script>
  function setOffline(e,o)
  {
    o.dontshow = 1;
  }
  
  __cmp("addEventListener",["init",setOffline,false],null);
  __cmp("addEventListener",["settings",setOffline,false],null);
</script>

Simply add this code directly after your CMP-code.

Back to top