Hi,
The default product placeholder image is not showing up on my shop pages (but is on single product pages). Why?
I’ve followed the instructions found here: https://docs.woocommerce.com/document/change-the-placeholder-image/ and I’ve had partial success.
The updated placeholder image shows fine on single product pages, but are still missing on the shop page (not even being loaded in the backend). How can I remedy this issue?
For further explanation, here is the code (from inspector) for a product that I manually designated a featured product image (that IS showing a thumbnail):
<li class="post-3700 product type-product status-publish has-post-thumbnail product_cat-uncategorized first instock product-type-simple">
<a href="http://wpdev2/wordpress/product/pe2800-rope/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"></a>
<div class="entry-product">
<a href="http://wpdev2/wordpress/product/pe2800-rope/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"></a>
<div class="entry-featured">
<a href="http://wpdev2/wordpress/product/pe2800-rope/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"></a>
<a href="http://wpdev2/wordpress/product/pe2800-rope/" style="outline: none;">
<img width="300" height="300" src="http://wpdev2/wordpress/wp-content/uploads/2018/07/no-image-300x300.jpg" class="attachment-shop_catalog size-shop_catalog wp-post-image" alt=""></a>
</div>
</div>
</li>
Here is an example of a product WITHOUT a manually designated featured product image (that IS NOT showing a thumbnail):
<li class="post-3701 product type-product status-publish no-post-thumbnail last instock product-type-simple">
<a href="http://wpdev2/wordpress/product/pe3000a/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"></a>
<div class="entry-product">
<a href="http://wpdev2/wordpress/product/pe3000a/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"></a>
<div class="entry-featured">
<a href="http://wpdev2/wordpress/product/pe3000a/" class="woocommerce-LoopProduct-link woocommerce-loop-product__link"></a>
<a href="http://wpdev2/wordpress/product/pe3000a/"></a>
</div>
</div>
</li>
As you can see, the second example there is a class of “no-post-thumbnail” and there is no image information loaded in the entry-featured section.