• Resolved kat99

    (@kat99)


    Is there a way to hide the marketing option for a site that does no marketing at all?
    Is it still GDPR compliant if we do that?
    Thanks

Viewing 1 replies (of 1 total)
  • Hi Kat,

    This is a possibility yes, although this does not look the best and I will advise that you contact your legal department in order for this to be clarified.

    Please see the following:

    Hiding the necessary toggle:
    
    #CybotCookiebotDialogBodyLevelButtonsSelectPane > fieldset > div:nth-child(2) {
      display: none;
    }
    Hiding the preferences toggle:
    #CybotCookiebotDialogBodyLevelButtonsSelectPane > fieldset > div:nth-child(3) {
      display: none;
    }
    
    Hiding the statistics toggle:
    
    #CybotCookiebotDialogBodyLevelButtonsSelectPane > fieldset > div:nth-child(4) {
      display: none;
    }
    
    Hiding the marketing toggle:
    
    #CybotCookiebotDialogBodyLevelButtonsSelectPane > fieldset > div:nth-child(5) {
      display: none;
    }
    
    set the width as 100 / (nr of remaining toggles) :
    
    @media screen and (min-width: 601px)
    #CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonWrapper {
      width: 33.3%;
    }
    To hide a category you can add rules to the style sheet:
    
    Necessary:
    
    #CybotCookiebotDialogDetailBodyContentCookieContainerTypes > div:nth-child(1) {
      display: none;
    }
    
    Preferences:
    #CybotCookiebotDialogDetailBodyContentCookieContainerTypes > div:nth-child(2) {
      display: none;
    }
    Statistics:
    
    #CybotCookiebotDialogDetailBodyContentCookieContainerTypes > div:nth-child(3) {
      display: none;
    }
    
    Marketing:
    
    #CybotCookiebotDialogDetailBodyContentCookieContainerTypes > div:nth-child(4) {
      display: none;
    }
    
    Necessary:
    
    #CybotCookiebotDialogDetailBodyContentCookieContainerTypes > div:nth-child(5) {
      display: none;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Can we hide the consent for MARKETING?’ is closed to new replies.