Want "Reject all" button to reject all cookies #259
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
in order to achieve a true reject all you need to set the Make sure that all defined toggle: {
value: 'necessary',
enabled: false,
readonly: false // cookie categories with "readonly: true" are all treated as "necessary cookies". change to false
} The necessary category is generally used for critical cookies (non tracking) and services which are created/executed regardless of the user's choice. I'd recommend you to rename this category to something else (or completely remove it) if you don't need it. |
Beta Was this translation helpful? Give feedback.
-
Is it possible with cookieconsent that the user changes its preferences afterwards through a "cookie preference" page in the website? Or is the only way the cookie banner? |
Beta Was this translation helpful? Give feedback.
@LokiDieKatze,
in order to achieve a true reject all you need to set the
readonly
property tofalse
, for each category defined inside each language.Make sure that all defined
toggle
objects look like this:The necessary category is generally used for critical cookies (non tracking) and services which are created/executed regardless of the user's choice. I'd recommend you to rename this category to something else (or completely remove it) if you don't need it.