Show the cookie banner again
The Cookie banner can be reopened by the visitor with a click on a button or link. It should place this somewhere on your website, preferably in the footer. There are two ways to implement this:
1. Insert a button or link with the class attribute "cookie-consent-settings":
<button class="cookie-consent-settings">Cookie settings</button>
... or:
<a href="javascript:void(0)" class="cookie-consent-settings">Cookie settings</a>
2. Insert a button or link that triggers the click event "cookieTractor.openConsentSettings()":
<button onclick="cookieTractor.openConsentSettings()">Cookie settings</button>
... or:
<a href="javascript:cookieTractor.openConsentSettings()">Cookie settings</a>
Of course, the event can be added to any clickable element using JavaScript.
When the user updates their settings, the cookies that can be removed are deleted from the visitor’s browser based on the new preferences. Third-party cookies cannot be deleted automatically, so you should inform users on your privacy policy page about how to remove these cookies manually in their browser.