Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wordpress dFactory Cookie Notice Plugin

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.

like image 482
Patrick Vogt Avatar asked Feb 02 '26 02:02

Patrick Vogt


1 Answers

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 } ?>
like image 69
Patrick Vogt Avatar answered Feb 03 '26 17:02

Patrick Vogt



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!