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' );