Hello,
This is Definitely Possible. Consider finding the following code in the js/functions.js File:
ajaxContentAdded: function(mfpResponse) {
SEMICOLON.widget.loadFlexSlider();
SEMICOLON.initialize.resizeVideos();
SEMICOLON.widget.masonryThumbs();
},
and replace it with:
ajaxContentAdded: function(mfpResponse) {
setTimeout( function(){
SEMICOLON.widget.loadFlexSlider();
SEMICOLON.initialize.resizeVideos();
SEMICOLON.widget.masonryThumbs();
}, 1000);
},
This should definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.