I have been using cookiebot Module and checked the automatically blocked mode. If a user has not accepted the cookies, then the cookie should not store on the User’s machine.
But Google Analytics cookies like _ga, _gid, _gat cookies are not blocked, still, it’s displaying the storage tab in developer tools in chrome. I added some snippets in the GA custom js snippets, then cookies are not shown in the Microsoft Edge and Firefox.
ga('create', 'UA-XXXXXXXXX-X', 'XXXXXXXX', { 'anonymizeIp': true , 'storage': 'none' , 'clientId': window.localStorage.getItem('ga_clientId') }); ga(function(tracker) { window.localStorage.setItem('ga_clientId', tracker.get('clientId')); });
GA Cookies are still persisted in Chrome. Can anyone guide me to sort out this issue?