Quote Originally Posted by beadingmad View Post
Hi Design,
I wondered if you could help me,
I have a website www.kim.beadingmadnow.com, just setting it up, however I am having problems with your add in for cookie control, its all installed however not displaying the add it.

Would you mind pointing me in the right direction

Zencart 1.51

Many Thanks

Dave
You need to ensure that your

countries:'GB' is in this format (GB does not work and also you need square brackets.)

countries:['United Kingdom']

or cookie control will not show!

Change this file this \includes\templates\your_template\templates\tpl_cookie_control.php in version 1.4 which is located in the following folder

Line 29
countries:'<?php echo COOKIE_CONTROL_COUNTRIES;?>' // Or supply a list ['United Kingdom', 'Greece']

Add [ ] and remove the ' '

Should be

countries:[<?php echo COOKIE_CONTROL_COUNTRIES;?>] // Or supply a list ['United Kingdom', 'Greece']

Then it should work!