Hello,
This is caused due to a Setting in the Lightbox Plugin which focuses on the Last Clicked item. To disable this, 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,
autoFocusLast: false,
callbacks: {
ajaxContentAdded: function(mfpResponse) {
SEMICOLON.widget.loadFlexSlider();
SEMICOLON.initialize.resizeVideos();
SEMICOLON.widget.masonryThumbs();
},
open: function() {
$body.addClass('ohidden');
},
close: function() {
$body.removeClass('ohidden');
}
}
});
}
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.