Home › Forums › WoodMart support forum › product images not visible in store › Reply To: product images not visible in store
April 2, 2022 at 11:54 am
#365876
Aizaz Imtiaz Awan
Keymaster
Hello,
Try to add the following PHP code snippet to the child theme functions.php file to fix this
add_action( 'init', function() {
add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
remove_action( 'woocommerce_before_shop_loop_item_title', 'woodmart_template_loop_product_thumbnail', 10 );
}, 1100 );
Best Regards