Woo Commerce Single Product Image missing

https://www.tonguetie.org.uk/test/

I’m trying to find an easy way to display some but not all products.
I can add them individually, or set them as featured but I can’t get the images to show.
Am I doing something wrong?

Hello Lisa,

You can make sure of the Woocommerce [products] shortcode then use the ids attribute to specify the products you want to be displayed.

For example: [products columns="4" ids="100,101,205,300"]

As for the product images not displaying, you have these codes added in the Global CSS that hides the featured image:


.single-post .entry-featured, .page .entry-featured {
    display: none;
}

.page .entry-featured {
    display: none;
}

Try adding this code in the Global CSS:

.products .product .entry-product .entry-featured {
    display: block;
}

Hope this helps.

1 Like

thank you so much! that works perfectly!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.