Hello There,
Thanks for updating in! I have investigated further and it turns out that this is a bug in the latest release of the theme. I already reported this to our developers. Meanwhile, I went ahead and created a patch. I override the isotope template _script-isotope-index.php file in your child theme (/x-child/framework/views/global/) and I added this content in it.
<?php
// =============================================================================
// VIEWS/GLOBAL/_SCRIPT-ISOTOPE-INDEX.PHP
// -----------------------------------------------------------------------------
// Isotope script call for index output.
// =============================================================================
$is_rtl = is_rtl();
?>
<script>
jQuery(document).ready(function($) {
<?php if ( $is_rtl ) : ?>
$.xIsotope.prototype._positionAbs = function( x, y ) {
return { right: x, top: y };
};
<?php endif; ?>
var $container = $('#x-iso-container');
$container.before('<span id="x-isotope-loading"><span>');
$(window).load(function() {
$container.xIsotope({
itemSelector : '.x-iso-container > .hentry',
resizable : true,
filter : '*',
<?php if ( $is_rtl ) : ?>
transformsEnabled : false,
isOriginLeft: false,
<?php endif; ?>
containerStyle : {
overflow : 'hidden',
position : 'relative'
}
});
$('#x-isotope-loading').stop(true,true).fadeOut(300);
$('#x-iso-container > .hentry').each(function(i) {
$(this).delay(i * 150).animate({'opacity' : 1}, 500);
});
});
$(window).xsmartresize(function() {
$container.xIsotope({ });
});
});
</script>
Please check your site now.