RImuovere conteggio prodotti nelle categorie / How to Remove WooCommerce Category Product Count
/*
* Removes products count after categories name
*/
add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );
function woo_remove_category_products_count() {
return;
}