Created
April 21, 2014 06:21
-
-
Save goliver79/11133883 to your computer and use it in GitHub Desktop.
[WOOCOMMERCE] Hide category items count in shop thumbnails
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
| <?php | |
| /* | |
| * woocommerce hide category items count in shop thumbnails | |
| */ | |
| function woo_hide_subcategory_count_html( $html ){ | |
| return ''; | |
| } | |
| add_filter( 'woocommerce_subcategory_count_html', 'woo_hide_subcategory_count_html' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment