jQuery( document ).ready(function($) { // MixItUp if( $('.wptg-list-wrapper').length ) { $('.wptg-list-wrapper').each(function() { var $elem = $(this); var $is_animation = $elem.data('animation'); var $active_filter = $elem.find('.wptg-list-filter .filter.active').data('filter'); if( $active_filter == '' || typeof $active_filter == 'undefined' ) { $active_filter = 'all'; } mixitup($elem, { animation: { enable: $is_animation }, load: { filter: $active_filter }, controls: { scope: 'local' } }); }); } });