In file:
oc-content/plugins/blog/js/user.js
Find code:
// LIGHT GALLERY
$('.blg-primary-img').lightGallery({
mode: 'lg-fade',
thumbnail:true,
cssEasing : 'cubic-bezier(0.25, 0, 0.25, 1)'
});
Replace it with:
$('.blg-content img').each(function() {
$(this).attr('data-src', $(this).attr('src'));
$(this).wrap('<a class="blg-lb" data-src="' + $(this).attr('src') + '"></a>');
});
$('.blg-content').lightGallery({
mode: 'lg-fade',
thumbnail: true,
selector: '.blg-lb',
cssEasing : 'cubic-bezier(0.25, 0, 0.25, 1)'
});