Link to change the consent settings
A "Manage my cookies" link, usually placed at the bottom of the page, allows the user to redisplay the customization window and modify their consent settings.
Permettre à l’utilisateur de changer son consentement est un requis des règlementations entourant le consentement aux fichiers témoins.
Example code to add this link:
<button type="button" data-cc="c-settings">Gérer mes cookies</button>
Or :
<li><a data-cc="c-settings" href="" >Gérer mes cookies</a></li>
Technical note:
The opening of the consent banner can be called in javascript using the following call:
// @param {number} [delay]
// @param {boolean} [create_modal] create modal if it doesn't exist
cc.show(0,true);
The opening of the consent preference change modal can be called in javascript using the following call:
// @param {number} delay
cc.showSettings(0);