In the case where a cookie set or extended by Cookie Saver should be removed again (potentially due to a cookie consent update), the following method can be used:
acq("deleteCookie", {'names': [INSERT LIST OF COOKIE NAMES});
Example (deleting the _ga and _fbp cookies):
acq("deleteCookie", {'names': ['_ga', '_fbp']});
This will remove any backup cookies that Cookie Saver might have stored. The original cookies should be removed separately AFTER the Cookie Saver delete method has been run.
Comments
0 comments
Article is closed for comments.