- This topic has 1 reply, 2 voices, and was last updated 2 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
› Forums › WooCommerce Services › How do I remove or hide product images in WooCommerce?
I sell services so I don’t need images. I’ve looked everywhere and tried all kinds of CSS and snippets. Please help! I’m sure it’s an easy solution but I just can’t find it
When you create a new product in WooCommerce, you can upload a product image. It’s also known as a featured image in WordPress. You can choose one of these choices if, for some reason, you no longer want to view these images .
Wherever you configured it, you can remove the featured/product photos. You can simply remove it from the WooCommerce Edit Product menu if you only have a few products. Nevertheless, a placeholder can still be seen. The steps below can be used to hide everything, regardless of whether the featured image is already set or a placeholder is being displayed.
From your admin dashboard, select Appearance > Customize.
Then select Additional CSS.
Replace 31 with the WooCommerce product ID in the textarea before adding the following CSS code:
woocommerce #content div#product-31 .woocommerce-product-gallery {
display:none;
}
.woocommerce #content div#product-31 div.summary {
float: left;
}