✏️ 正在编辑: wooCategoriesWidget.js
路径:
/var/www/yuppietech.com.br/wp-content/plugins/ocean-extra/assets/js/woo/wooCategoriesWidget.js
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
var $j = jQuery.noConflict(); $j( document ).ready( function() { "use strict"; // Woo categories widget oceanwpWooCategoriesWidget(); } ); /* ============================================== WOOCOMMERCE CATEGORIES WIDGET ============================================== */ function oceanwpWooCategoriesWidget() { "use strict" $j( '.product-categories' ).each( function() { var IconDown = '<i class="fa fa-angle-down"></i>'; var 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 ); } } ); } ); }
💾 保存文件
← 返回文件管理器