Reputation: 1
On the single product page om http://www.donsdesign-skilte.dk/produkt/00-rustfri-250x150-mm/ the product image isnt showing, Ive tried to regen img, and reinstall woocommerce but doesnt help, the image are showing in /shop so now am left wondering
Upvotes: 0
Views: 4437
Reputation: 1
I am having this issue too, luckily I fixed it as follow: Go to Appearance --> Customization --> Additional CSS and find these lines of code
/*=== WOOCOMMERCE ===*/
/*--- SINGLE PRODUCT ---*/
/* Stacked Gallery for desktop and sticky summary */
@media (min-width: 769px) {
.woocommerce-product-gallery {
display:none ;
Remove none and save . That's it.
Upvotes: -1
Reputation: 342
//Can you use this Additional CSS
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
opacity: 1 !important;
}
Upvotes: 1
Reputation: 330
Simply add this css
.woocommerce-product-gallery {opacity: 1 !important;}
I don't know what is the correct method.
Upvotes: 0
Reputation: 938
Something similar was happening to me, and it was a conflict with another lightbox plugin we had installed. I assume this resulted when WooCommerce made their major lightbox changes in 3.0. Disabling the conflicting plugin was the way we were able to confirm it, because then the image showed up like normal.
Upvotes: 0
Reputation: 171
There is js error ajaxyLiveSearch is not a function. Try to solve this issue, gallery js will work.
Upvotes: 0
Reputation: 310
Parent element of the picture is hidden by setting opacity: 1
. You need to delete style
property of this element to show product image.
Replace this line
<div class="woocommerce-product-gallery woocommerce-product-gallery--with-images woocommerce-product-gallery--columns-4 images" data-columns="4" style="opacity: 0; transition: opacity .25s ease-in-out;">
with
<div class="woocommerce-product-gallery woocommerce-product-gallery--with-images woocommerce-product-gallery--columns-4 images" data-columns="4">
Upvotes: 0