Hi there,
I had checked the your page again, but it was the same error occurs yet.
I think like that is occurring error by the below script appended in the html body on your page.
<script type="text/javascript">
var dropCookie = true;
var cookieDuration = 28;
var cookieName = 'complianceCookie';
var cookieValue = 'on';
var privacyMessage = "";
jQuery(document).ready(function($) {
privacyMessage = jQuery('#hidden-cookie-message').html();
if(checkCookie(window.cookieName) != window.cookieValue){
createDiv(true);
window.setTimeout(function() {
$('#cookie-law').fadeOut();
}, 999999999);
}
});
</script>
That above “checkCookie()” function is undefined.
How about trying follows?
<script type="text/javascript">
var dropCookie = true;
var cookieDuration = 28;
var cookieName = 'complianceCookie';
var cookieValue = 'on';
var privacyMessage = "";
jQuery(document).ready(function($) {
privacyMessage = jQuery('#hidden-cookie-message').html();
if (typeof checkCookie == 'function') {
if(checkCookie(window.cookieName) != window.cookieValue){
createDiv(true);
window.setTimeout(function() {
$('#cookie-law').fadeOut();
}, 999999999);
}
}
});
</script>
It should work if there are no errors in JavaScript.
Thank you,