beadingmad:
THanks Bravel
I have checked the zencart backend and now have ['United Kingdom'] in the countries list
I have also amended the file by removing ' ' and added [ ]
This is still not working.
Many Thanks
Dave
Just checked you site and you have double brackets showing in your code.
countries:[['United Kingdom']]
Your page source should look like this
http://www.lightevolution.co.uk/
<!--BOF cookie control script-->
<script src="http://www.geoplugin.net/javascript.gp" type="text/javascript"></script>
<script type="text/javascript">//<![CDATA[
cookieControl({
introText:'We use cookies to recognize you on your next visit. Furthermore, we use Google Analytics.',
fullText:'<p>Cookies enable us to collect information about the use of our services and to improve and adapt to the needs of our visitors. Our cookies provide information related to personal identification. They are also used to process your order correctly.By using our site you agree to our. <a href="http://www.lightevolution.co.uk/index.php?main_page=privacy">Privacy Policy</a>.</p>',
cookieOnText:'Cookies are on',
cookieOffText:'Cookies are off',
position:'left',
shape:'triangle',
theme:'light',
startOpen:true, // true , false
autoHide:6000, // Time in miliseconds
protectedCookies: ['analytics'], //list the cookies you do not want deleted ['analytics', 'twitter']
consentModel:'implicit', // information_only , implicit , explicit
subdomains:true, // true , false
onAccept:function(){ccAddAnalytics();},
onReady:function(){},
onCookiesAllowed:function(){ccAddAnalytics();},
onCookiesNotAllowed:function(){},
countries:['United Kingdom', 'Netherlands'] // Or supply a list ['United Kingdom', 'Greece']
});
function ccAddAnalytics() {
jQuery.getScript("http://www.google-analytics.com/ga.js", function() {
var GATracker = _gat._createTracker('UA-XXXXXXXXX-1');
GATracker._trackPageview();
});
}
//]]>
</script><!--EOF cookie control script-->
Hope this fixes your issue!