Hi, there was a bug in the script shown on the page, not the script used on the page… I’ve fixed it.
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.js"></script>
<script>
_$(document).ready(function(){
if (!$.cookie('alert')) {
$('.popup-overlay').show();
var date = new Date();
date.setTime(date.getTime() + 24 * 60 * 60 * 1000);
$.cookie('alert', true, { expires: date });
}
});
</script>