![]() 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/ |
var $j = jQuery.noConflict(); $j( document ).on( 'ready', function() { "use strict"; // Woo categories widget acmthemesWooCategoriesWidget(); } ); /* ============================================== WOOCOMMERCE CATEGORIES WIDGET ============================================== */ function acmthemesWooCategoriesWidget() { "use strict" $j( '.woo-dropdown-cat .product-categories' ).each( function() { var IconDown = '<i class="fa fa-angle-down"></i>', IconUp = '<i class="fa fa-angle-up"></i>'; $j( this ).find( 'li' ).has( '.children' ).has( 'li' ).prepend( '<div class="open-this">'+ IconDown +'</div>' ); $j( this ).find( '.open-this' ).on( 'click', function(){ if ( $j( this ).parent().hasClass( 'opened' ) ) { $j( this ).html( IconDown ).parent().removeClass( 'opened' ).find( '> ul' ).slideUp( 200 ); } else { $j( this ).html( IconUp ).parent().addClass( 'opened' ).find( '> ul' ).slideDown( 200 ); } } ); } ); }