stuart-d
6/2/2016 - 5:36 PM

Remove WooCommerce product category count after category title

Remove WooCommerce product category count after category title

/*
 *
 * Removes products count after categories name
 * 
 */
function sd_remove_woocommerce_category_products_count() {
  return;
}
add_filter( 'woocommerce_subcategory_count_html', 'sd_remove_woocommerce_category_products_count' );