Can somebody help me please ?
Thanks
If your theme doesn’t have a custom CSS option, Use a CSS plugin to add the following rule:
.woocommerce ul.products li.type-product a img {
display: none;
}
First of all thank you very much for your help, but the code doesn’t work…
i have also try this:
.woocommerce ul.products li.type-product a img {
display: none !important;
}
but his also doesn’t work. Have you another tip ?
Thank you very much for your help 🙂
I see the gray box for the Geometric jewelry box is no longer showing on the home page. Were there other images that you didn’t want to show, like the three location images? Are the images that you don’t want to show on a different page? By the way, you don’t need to use the !important clause. It’s actually better if you remove it.
Thanks again Mate for your help..Much appreciated. I think i don’t have describe it exactly. I want do hide the images of my categorys..
I want to disable the 3 images with the islands !
Hope its now clear.
Thanks again and Sorry for my mistake !
Greetings.
Ah, OK, thanks for the clarification. When you said “product,” I thought the jewelry box was the only thing that was being “sold.”
Add this rule:
.woocommerce ul.products li.product a img {
display: none;
}
Thank you, now it works. But now is the Product image also disabled. Is it possible that the product (GEOMETRIC JEWELRY BOX) image show up but the other 3 images above are not visible ?
Thanks again :). Much appreciated.
Add this rule after the rule that I gave you previously:
.woocommerce ul.products li.type-product a img {
display: block;
}