Created
March 14, 2013 11:35
-
-
Save jameskoster/5160675 to your computer and use it in GitHub Desktop.
WooCommerce - hide sub-category product count in product archives
This file contains 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
add_filter( 'woocommerce_subcategory_count_html', 'jk_hide_category_count' ); | |
function jk_hide_category_count() { | |
// No count | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment