Hi,
I am trying to remove the product count which is in () to the right of the category name on the shop home: http://miximals.com/shop/
I’ve tried adding the following to themes/idstore/functions.php and it’s not working. Help?
/*
* Removes products count after categories name
*/
add_filter( ‘woocommerce_subcategory_count_html’, ‘woo_remove_category_products_count’ );
function woo_remove_category_products_count() {
return;
}
Thanks,
Kimberly