Hi There,
I’ve commented out this custom JS and the slider is working fine again:
jQuery(document).ready(function($) {
var $container = $('#x-iso-container');
$container.before('<span id="x-isotope-loading"><span>');
$(window).load(function() {
$container.isotope({
itemSelector : '.hentry',
// options...
resizable: false, // disable normal resizing
// set columnWidth to a percentage of container width
masonry: { columnWidth: $container.width() / 3 }
});
$('#x-isotope-loading').stop(true,true).fadeOut(300);
$('#x-iso-container > .hentry').each(function(i) {
$(this).delay(i * 150).animate({'opacity' : 1}, 500);
});
});
$(window).smartresize(function() {
$container.isotope({
itemSelector : '.hentry',
// options...
resizable: false, // disable normal resizing
// set columnWidth to a percentage of container width
masonry: { columnWidth: $container.width() / 3 }
});
});
$( '.fin-ad' ).click(function() {
$( this ).toggleClass( "open" );
$( this ).toggleClass( "closed" );
$( '#x-iso-container' ).isotope({});
$( '#x-iso-container' ).on('transitionend webkitTransitionEnd oTransitionEnd otransitionend MSTransitionEnd',
function() {
$( this ).isotope({});
});
});
// Select and loop the container element of the elements you want to equalise
$('.isotope').each(function(){
// Cache the highest
var highestBox = 0;
// Select and loop the elements you want to equalise
$('.acc_main-title>.x-text', this).each(function(){
// If this box is higher than the cached highest then store it
if($(this).height() > highestBox) {
highestBox = $(this).height();
}
});
// Set the height of all those children to whichever was highest
$('.acc_main-title>.x-text', this).height(highestBox);
});
});
Regards!