Skip to content

Instantly share code, notes, and snippets.

@bluvertigo
Created December 16, 2014 11:45
Show Gist options
  • Select an option

  • Save bluvertigo/4b322ee17e217c8dd385 to your computer and use it in GitHub Desktop.

Select an option

Save bluvertigo/4b322ee17e217c8dd385 to your computer and use it in GitHub Desktop.
RImuovere conteggio prodotti nelle categorie / How to Remove WooCommerce Category Product 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