This example below will work… with the curly brackets it’s in json format…
{ “ui_click”: “true” }
Thx Matty… you helped me to better use WP… I created a function which works with the filter… 🙂
Thx & best regards,
Fred
Solution copied from https://groups.google.com/forum/#!forum/cookiecontrol.
Found the issue:
FIND
var f=jQuery(this).attr(“checked”);var h=CookieControl;if(f==true){h.setCookie(“ccNoPopup”,”no”);
AND REPLACE IT BY:
var f=jQuery(this).attr(“checked”);var h=CookieControl;if(f==”checked”){h.setCookie(“ccNoPopup”,”no”);
Now the setting is remembered correctly!!!!