With regard to the GDPR, in german DSGVO, I would like to use the Plugin Cookie Notice from dFactory for my Wordpress website. There is the possibility that non-functional cookies, for example Google Analytics, will no longer be stored if you refuse the use of cookies.
Documentation of Cookie Notice by dFactory
Can any of you tell me which code to write? Unfortunately, I could not find any instructions on the internet. Maybe someone has already implemented something like that.
Thank you in advance.
I was able to find a solution after trying multiple things. I just had to put the javascript code from google analytics between a php if condition like this:
<?php if (cn_cookies_accepted()) { ?>
<script type="text/javascript">
(function(i,s,o,g,r,a,m).{i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-#', 'auto');
ga('set', 'forceSSL', true);
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
</script>
<?php } ?>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With