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!
Bookmarks