Home › Forums › WoodMart support forum › Cloud loaded Image Problem in Bestseller Widget › Reply To: Cloud loaded Image Problem in Bestseller Widget
May 6, 2022 at 9:14 am
#373547
Artem Temos
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