• Resolved supportdelfino

    (@supportdelfino)


    Thanks for your plugin but I have a question.

    Since the cookie banner is quite annoying to keep visible while browsing but it’s important to give user the possibility to modify his consent at any time…

    Is it possible to set a shortcode to be activated that button on privacy page?

    So I can hide it from the whole site and leave it visible only on the privacy page (as cookiebot does): is there a shortcode or a way to make that banner appear ONLY on the privacy page (perhaps with a CSS rule)? thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor jarnovos

    (@jarnovos)

    Hi @supportdelfino,

    I hope I understood the request correctly, the below CSS will hide the small “Manage Consent” button (found on the bottom of the page) on every page, except for when it is a Complianz Document. You can add it to Appearance > Customize > Additional CSS.

    .cmplz-manage-consent {
        display: none;
    }
    
    .cmplz-document .cmplz-manage-consent {
        display: block;
    }

    Hope this helps, let me know if you have any further questions!
    Kind regards,
    Jarno

    Thread Starter supportdelfino

    (@supportdelfino)

    Hi Jarno and thank you for tour fast reply!

    Basically I want to hide the consent button from all pages but… keep it on my “Privacy page” which, for example, has “page-id-3”

    What CSS code have I to insert in this case?Ty

    Plugin Contributor jarnovos

    (@jarnovos)

    Hi @supportdelfino,

    No problem! You could use the same CSS as above but replace .cmplz-document with the .page-id-3 class.

    .cmplz-manage-consent {
        display: none;
    }
    
    .page-id-3 .cmplz-manage-consent {
        display: block;
    }

    Kind regards,
    Jarno

    Thread Starter supportdelfino

    (@supportdelfino)

    Ty jarno!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Call up a CTA button in privacy policy’ is closed to new replies.