Skip to content

Instantly share code, notes, and snippets.

@goliver79
Created April 21, 2014 06:21
Show Gist options
  • Select an option

  • Save goliver79/11133883 to your computer and use it in GitHub Desktop.

Select an option

Save goliver79/11133883 to your computer and use it in GitHub Desktop.
[WOOCOMMERCE] Hide category items count in shop thumbnails
<?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