Hi,
I've installed woocommerce and all the categories and products page generated automatically show a picture in the beginning of the page. I could hide it in pages deleting the featured image editing the page. However, in these pages generated automatically (woocommerce categories, products, i.e) I can't do it. I tried to do it within the Betheme options, but unfortunately I couldn't manage to hide it.
Could you tell me how can I hide the featured image so that it doesn't appear in all automatic generated pages?
Thank you!
Comments
.product_image_wrapper{
Thanksdisplay:none !important;
}
.summary{
float:left !important;
width:100% !important;
}
It's the subheader.
Thanks
body.[cat-name] #Subheader{What should you paste there?display:none !important;
}
It's simple, please click the right mouse button on your website and inspect it.
Then, find the body tag and look for term-something tag, in my case it's shirts(because the category is named like this)
body.term-shirts #Subheader{display:none !important;
}