Archived topic
Woocommerce hide category images on shop and catalog pages
5 replies · Started by John on February 25, 2020
I have a site where the client does not want to make and upload images for the product categories. He wants the categories and subcategories to show with the products, but with title only, no thumbnails. Can this be done with CSS?
Hi there,
Would something like this work?:
.tax-product_cat .wc-product-image {
display: none;
}
Let me know :)
Tom,
That takes out all the product category images AND the product images. I just want the product category and sub-category images hidden.
Thanks,
John
Hi there,
try this CSS :
.woocommerce ul.products li.product-category a img {
display: none;
}
David,
That looks like it works perfect!
You guys are GREAT!
Thanks,
John
Glad we could be of help