Skip to content

Instantly share code, notes, and snippets.

@corsonr
Created September 30, 2013 10:26
Show Gist options
  • Save corsonr/6761916 to your computer and use it in GitHub Desktop.
Save corsonr/6761916 to your computer and use it in GitHub Desktop.
WooCommerce - Remove category products count
/*
*
* 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