Hello,
Please find the following code in the js/functions.js File:
if( $lightboxAjaxEl.length > 0 ) {
$lightboxAjaxEl.magnificPopup({
type: 'ajax',
closeBtnInside: false,
callbacks: {
ajaxContentAdded: function(mfpResponse) {
SEMICOLON.widget.loadFlexSlider();
SEMICOLON.initialize.resizeVideos();
SEMICOLON.widget.masonryThumbs();
},
open: function() {
$body.addClass('ohidden');
},
close: function() {
$body.removeClass('ohidden');
}
}
});
}
and replace it with:
if( $lightboxAjaxEl.length > 0 ) {
$lightboxAjaxEl.magnificPopup({
type: 'ajax',
closeBtnInside: false,
callbacks: {
ajaxContentAdded: function(mfpResponse) {
SEMICOLON.widget.loadFlexSlider();
SEMICOLON.initialize.resizeVideos();
SEMICOLON.widget.masonryThumbs();
}
}
});
}
This should definitely fix your issue. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.