Anyone in Europe got any suggestions about the cookie law:
http://www.ico.gov.uk/for_organisations … okies.aspx
Those setting cookies must:
tell people that the cookies are there,
explain what the cookies are doing, and
obtain their consent to store a cookie on their device.
This is why we are seeing popups asking if you agree to use of cookies.
What are you using to comply?
Keith
http://www.ico.gov.uk/for_organisations … okies.aspx
Those setting cookies must:
tell people that the cookies are there,
explain what the cookies are doing, and
obtain their consent to store a cookie on their device.
This is why we are seeing popups asking if you agree to use of cookies.
What are you using to comply?
Keith
I have seen people use Javascript Pop-ups, some use a pull out in the bottom left or right of the screen. But either way the information has to be on there.
"An Apple doth not fall far from its tree, yet an orange does."
https://lbwebsitedesign.com - Responsive Web Design & Web Hosting Services.
http://helpsite.sirage.com - HTML5, CSS3 and CC Help Video Blog.
https://lbwebsitedesign.com - Responsive Web Design & Web Hosting Services.
http://helpsite.sirage.com - HTML5, CSS3 and CC Help Video Blog.
This came in May 2011, most national companies are complying.
I am now looking for a simple solution.
Keith
I am now looking for a simple solution.
Keith
You would have thought by now CoffeeCup would have a cookie in their logo and ico
I guess its something we should be asking Coffeecup to make a program for, though i bet they have plans to incorporate it for free into their current programs in future updates
SCOTT
I guess its something we should be asking Coffeecup to make a program for, though i bet they have plans to incorporate it for free into their current programs in future updates
SCOTT

Started using CC VSD in January 2009, I don't do HTML code, Sales from CC site exceeding expectations taken me out of semi-retirement
Hosted FREE on CC S DRIVE www.chauffeurdrivenluxurycars.co.uk
My new VSD & SCCP site Oct 2011 www.deloreanjewellery.co.uk
My friendly window cleaner www.mwcwindowcleaner.co.uk
Hosted FREE on CC S DRIVE www.chauffeurdrivenluxurycars.co.uk
My new VSD & SCCP site Oct 2011 www.deloreanjewellery.co.uk
My friendly window cleaner www.mwcwindowcleaner.co.uk
Hi, has anyone implemented a cookie control into their VSD site yet? What did you use? Is there an easy way to add it?
Thanks
Matt
Thanks
Matt
Do you want to use Cookies?
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
My site does use cookies as it has ads by google adsense. So I am required to have an opt in or out cookie control for visitors. I'm struggling at the moment to find an easy option to add to VSD or a way that is explained simply.
Regards,
Matthew Gordon
Regards,
Matthew Gordon
Use an onload statement with some javascript.
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
I think the keywords in my previous comment were "an easy option to add to VSD or a way that is explained simply"
I appreciate your comment Eric, but a description of how to do this simply would be helpful if anyone has any suggestions?
Thank you
Matt
I appreciate your comment Eric, but a description of how to do this simply would be helpful if anyone has any suggestions?
Thank you
Matt
I did a bit of research and I have downloaded jquery file and have this code snippet:
<script src="/js/jquery-1.3.2.min.jss" type="text/javascript"></script>
I downloaded cookiecontrol-5.1.min.js file and I have this code snippet:
<script src="http://www.geoplugin.net/javascript.gp" type="text/javascript"></script>
<script src="/PATH_TO_COOKIE_CONTROL/cookieControl-5.1.min.js" type="text/javascript"></script>
<script type="text/javascript">//<![CDATA[
cookieControl({
introText:'<p>Welcome to footballmanagermad.com</p><p>This site uses some unobtrusive cookies to store information on your computer.</p>',
fullText:'<p>Some cookies on this site are essential, and the site won\'t work as expected without them. These cookies are set when you submit a form, login or interact with the site by doing something that goes beyond clicking on simple links.</p><p>We also use some non-essential cookies to anonymously track visitors or enhance your experience of the site. If you\'re not happy with this, we won\'t set these cookies but some nice features of the site may be unavailable.</p><p>To control third party cookies, you can also adjust your <a href="http://www.civicuk.com/cookie-law/browser-settings" target="_blank">browser settings</a>.</p><p>By using our site you accept the terms of our <a href="http://www.footballmanagermad.com/privacypolicy">Privacy Policy</a>.</p>',
position:'left', // left or right
shape:'triangle', // triangle or diamond
theme:'light', // light or dark
startOpen:true,
autoHide:6000,
subdomains:true,
protectedCookies: [], //list the cookies you do not want deleted ['analytics', 'twitter']
consentModel:'implicit',
onAccept:function(){ccAddAnalytics()},
onReady:function(){},
onCookiesAllowed:function(){ccAddAnalytics()},
onCookiesNotAllowed:function(){},
countries:'' // Or supply a list ['United Kingdom', 'Greece']
});
function ccAddAnalytics() {
jQuery.getScript("http://www.google-analytics.com/ga.js", function() {
var GATracker = _gat._createTracker('UA-13092188-1');
GATracker._trackPageview();
});
}
//]]>
</script>
I have added a folder called "js" to "root" and added the jquery file
and I added the cookie control file to "root"
I also deleted the /PATH_TO_COOKIE_CONTROL/ part of the code as I was instructed to
Not sure where to put the code snippets though in VSD.
Any suggestions?
Also, once implemented, if I do a page preview should this work or will it only work once uploaded with FTP?
Thank you.
Matt
<script src="/js/jquery-1.3.2.min.jss" type="text/javascript"></script>
I downloaded cookiecontrol-5.1.min.js file and I have this code snippet:
<script src="http://www.geoplugin.net/javascript.gp" type="text/javascript"></script>
<script src="/PATH_TO_COOKIE_CONTROL/cookieControl-5.1.min.js" type="text/javascript"></script>
<script type="text/javascript">//<![CDATA[
cookieControl({
introText:'<p>Welcome to footballmanagermad.com</p><p>This site uses some unobtrusive cookies to store information on your computer.</p>',
fullText:'<p>Some cookies on this site are essential, and the site won\'t work as expected without them. These cookies are set when you submit a form, login or interact with the site by doing something that goes beyond clicking on simple links.</p><p>We also use some non-essential cookies to anonymously track visitors or enhance your experience of the site. If you\'re not happy with this, we won\'t set these cookies but some nice features of the site may be unavailable.</p><p>To control third party cookies, you can also adjust your <a href="http://www.civicuk.com/cookie-law/browser-settings" target="_blank">browser settings</a>.</p><p>By using our site you accept the terms of our <a href="http://www.footballmanagermad.com/privacypolicy">Privacy Policy</a>.</p>',
position:'left', // left or right
shape:'triangle', // triangle or diamond
theme:'light', // light or dark
startOpen:true,
autoHide:6000,
subdomains:true,
protectedCookies: [], //list the cookies you do not want deleted ['analytics', 'twitter']
consentModel:'implicit',
onAccept:function(){ccAddAnalytics()},
onReady:function(){},
onCookiesAllowed:function(){ccAddAnalytics()},
onCookiesNotAllowed:function(){},
countries:'' // Or supply a list ['United Kingdom', 'Greece']
});
function ccAddAnalytics() {
jQuery.getScript("http://www.google-analytics.com/ga.js", function() {
var GATracker = _gat._createTracker('UA-13092188-1');
GATracker._trackPageview();
});
}
//]]>
</script>
I have added a folder called "js" to "root" and added the jquery file
and I added the cookie control file to "root"
I also deleted the /PATH_TO_COOKIE_CONTROL/ part of the code as I was instructed to
Not sure where to put the code snippets though in VSD.
Any suggestions?
Also, once implemented, if I do a page preview should this work or will it only work once uploaded with FTP?
Thank you.
Matt
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.