Añadir a function.php /** * Move WooCommerce subcategory list items into * their own <ul> separate from the product <ul>. */ add_action( 'init', 'move_subcat_lis' ); function move_subcat_lis() { // Remove the subcat <li>s from the old location. remove_filter( 'woocommerce_product_loop_start', 'woocommerce_maybe_show_product_subcategories' ); add_action( 'woocommerce_before_shop_loop', 'msc_product_loop_start', 1 ); add_action( 'woocommerce_before_shop_loop', 'msc_maybe_show_product_subcategories', 2 ); add_action( 'woocommerce_before_shop_loop', 'msc_product_loop_end', 3 ); } /** * Conditonally start the product loop with a <ul> contaner if subcats exist.…