My Magnific Popup не работает, и через несколько часов я все еще не могу найти решение.Вот ссылка на мой сайт: https://client -casamathilda.loveiscreative.com .При входе на сайт должно появиться всплывающее окно.
Есть идеи, что может быть причиной ошибки?
Спасибо!
Вот фрагмент кода:
$(document).ready(function() {
$(window).on('load', function() {
var now, lastDatePopupShowed;
now = new Date();
if (localStorage.getItem('lastDatePopupShowed') !== null) {
lastDatePopupShowed = new Date(parseInt(localStorage.getItem('lastDatePopupShowed')));
}
if (((now - lastDatePopupShowed) >= (15 * 86400000)) || !lastDatePopupShowed) {
$.magnificPopup.open({
items: {
src: '#launch-popup'
},
type: 'inline'
}, 0);
localStorage.setItem('lastDatePopupShowed', now);
}
});
});
<div id="launch-popup" class="launch-popup mfp-hide mob-hide">
<div class="bg-image padded-8" style="background-image:url({{site.data.pop-up.featured_image}});">
{% if page.language == 'en' %}
<h2> {{site.data.pop-up.title-en}} </h2>
<p> {{site.data.pop-up.body-en}}</p>
<div class="button-1 button-ochre align-center">
<a href="#" target="_blank">Book Now<img src="/images/right-arrow.svg" alt="right arrow"></a>
</div>
{% elsif page.language == 'fr' %}
<h2> {{site.data.pop-up.title-fr}} </h2>
<p> {{site.data.pop-up.body-fr}}</p>
<div class="button-1 button-ochre align-center">
<a href="#" target="_blank">Réserver<img src="/images/right-arrow.svg" alt="right arrow"></a>
</div>
{% else %}
<h2> {{site.data.pop-up.title-es}} </h2>
<p> {{site.data.pop-up.body-es}}</p>
<div class="button-1 button-ochre align-center">
<a href="#" target="_blank">Reserva Ahora<img src="/images/right-arrow.svg" alt="right arrow"></a>
</div>
{% endif %}
</div>
</div>