How to prevent the use of AddThis with cookies on my website?

I use the AddThis component on the site to add social bookmarking features. However, I do not want their code to add cookies to my visitors.

How can I use a component but not use it?

+3
source share
1 answer

Use the data_use_cookies configuration data_use_cookies when configuring the component:

 <script type="text/javascript">var addthis_config = {data_use_cookies_ondomain: !1, data_use_cookies: !1};</script> <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5278666D66d6d6"></script> 
+5
source

All Articles