Joseph
Joseph

Reputation: 314

Product Image not displaying in woocommerce

I am working on a website when suddenly the product image on the single page stops displaying. But when I click on the empty space where the image supposed to be it pops up with the image. I can't seem to figure out why the sudden loss of image.

http://www.efikobooks.com/product/the-huge-kids-quiz-book/

Upvotes: 0

Views: 2131

Answers (1)

Darsh khakhkhar
Darsh khakhkhar

Reputation: 676

in your page under the "single-pimage" div there is an another div with class name "woocommerce-product-gallery" which has an inline css "opacity:0" that's why your product image is not displaying set it to 1 and image will appear.. or just paste this in your css...

.single-pimage .woocommerce-product-gallery{
  opacity: 1 !important;
}

Upvotes: 2

Related Questions