Created
December 16, 2014 11:45
-
-
Save bluvertigo/4b322ee17e217c8dd385 to your computer and use it in GitHub Desktop.
RImuovere conteggio prodotti nelle categorie / How to Remove WooCommerce Category Product Count
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Removes products count after categories name | |
| */ | |
| add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' ); | |
| function woo_remove_category_products_count() { | |
| return; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment