![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/walla3t.corals.io/wp-content/themes/apper/assets/js/third/woo/devs/ |
var $j = jQuery.noConflict(); $j( document ).on( 'ready', function() { "use strict"; // Woo catalog view acmthemesWooGridList(); } ); /* ============================================== WOOCOMMERCE GRID LIST VIEW ============================================== */ function acmthemesWooGridList() { "use strict" if ( $j( 'body' ).hasClass( 'has-grid-list' ) ) { // Re-run function var acmthemesProductSlider = function() { if ( ! $j( 'body' ).hasClass( 'no-carousel' ) && $j( '.woo-entry-image.product-entry-slider' ).length) { setTimeout( function() { $j( '.woo-entry-image.product-entry-slider' ).slick( 'unslick' ); acmthemesInitCarousel(); }, 350 ); } } $j( '#acmthemes-grid' ).on( 'click', function() { acmthemesProductSlider(); $j( this ).addClass( 'active' ); $j( '#acmthemes-list' ).removeClass( 'active' ); Cookies.set( 'gridcookie', 'grid', { path: '' } ); $j( '.woocommerce div.products' ).fadeOut( 300, function() { $j( this ).addClass( 'grid' ).removeClass( 'list' ).fadeIn( 300 ); } ); return false; } ); $j( '#acmthemes-list' ).on( 'click', function() { acmthemesProductSlider(); $j( this ).addClass( 'active' ); $j( '#acmthemes-grid' ).removeClass( 'active' ); Cookies.set( 'gridcookie', 'list', { path: '' } ); $j( '.woocommerce div.products' ).fadeOut( 300, function() { $j( this ).addClass( 'list' ).removeClass( 'grid' ).fadeIn( 300 ); } ); return false; } ); if ( Cookies.get( 'gridcookie' ) == 'grid' ) { $j( '.acmthemes-grid-list #acmthemes-grid' ).addClass( 'active' ); $j( '.acmthemes-grid-list #acmthemes-list' ).removeClass( 'active' ); $j( '.woocommerce div.products' ).addClass( 'grid' ).removeClass( 'list' ); } if ( Cookies.get( 'gridcookie' ) == 'list' ) { $j( '.acmthemes-grid-list #acmthemes-list' ).addClass( 'active' ); $j( '.acmthemes-grid-list #acmthemes-grid' ).removeClass( 'active' ); $j( '.woocommerce div.products' ).addClass( 'list' ).removeClass( 'grid' ); } } else { Cookies.remove( 'gridcookie', { path: '' } ); } }