Here’s a quick snippet from Remi Corson you can include in your `functions.php` file to remove the product count after category names.
/*
* Removes products count after categories name
*/
add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );
function woo_remove_category_products_count() {
return;
}
Explicación completa en http://www.remicorson.com/woocommerce-remove-category-products-count/
Vía | WooThemes Support


