Unfortunately, on our site, the page is just reloading.
I think the plugin is just using some “simple” filters within wordpress who get disabled by matching with euCookie set.
For WP Super Cache User there is a Workaround that worked for me.
I’m using the latest Versions of WP (4.9.6), WP Super Cache (1.6.1) and EU Cookie Law (3.0.1)
This is a Quote from the FAQ:
We are working to improve cache compatibility. As for now, conflicts may occur.
WP Super Cache (sperimental*): open the file wp-content/advanced-cache.php and add the following immediately after <?php opening:
if ( !isset( $_COOKIE[‚euCookie‘] ) ){ return; }
So that you have:
<?php
if ( !isset( $_COOKIE[‚euCookie‘] ) ){ return; }
function wpcache_broken_message() {
Important Notice!
It seemed that the editing of this file get overritten when you flush the Cache!
Maybe someone has a better idea where you can place the Workaround
-
This reply was modified 8 years ago by gingin0.