This topic has 4 replies, 3 voices, and was last updated 9 years, 10 months ago ago by Eva Kemp
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
Hello,
Try to add this code into custom.css file.
.category-block .count{
display:none;
}
Here is a video tutorial how to create custom.css: https://www.youtube.com/watch?v=Qok2zRedRMY&feature=youtu.be.
Regards,
Robert Hall.
Perfect – worked like a charm.
Thanks Robert!
Hello,
You’re welcome.
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up