brainsum/cookieconsent

Add "Reject All" option

Closed this issue · 10 comments

Since March 31 it's necessary to have an "Reject all" option to be in compliance with the GDPR.

I noticed that it was implemented in #49 which has been closed, any possibility to add this feature?

Good to know in general @NathanBnm. Can you provide a source link?

I did not find the official source but the regulation applies in France. Anyway the addition of such a feature would be convenient.

In French (https://www.cnil.fr/fr/nouvelles-regles-cookies-et-autres-traceurs-bilan-accompagnement-cnil-actions-a-venir)

You can also check the officiale GDPR website here : https://gdpr.eu/

Well, a non-deep-link like https://gdpr.eu that lets others search for your mentioned "compliance with the GDPR" might hamper the reopening of issue #59. Great resource though :)

Hello, I need this feature, please. thanks. kind regards

p-w commented

Unfortunately this is a major requirement for most European, but definitely UK and DE based websites.

More can be found here from the Information Commissioner's Office (UK)

Does anyone have a solution now?

Created a PR ( #81 )

Created a PR ( #81 )

funny.. now i look to #49 and the change looks almost the same.

Could the PR be merged? We also need this functionality.

there is a showRejectAllButton setting you can add to the config object and set it to true:

window.CookieConsent.init({
    modalMainTextMoreLink: null,
    UITimeout: 1000,
    // Show the 'reject all cookies' button. It's false by default.
    showRejectAllButton: true,
    ... // rest of config
})