Home › Forums › WoodMart support forum › Remove Image Placeholder in Woocommerce Catalog Pages › Reply To: Remove Image Placeholder in Woocommerce Catalog Pages
December 1, 2020 at 3:40 pm
#246599
Elise Noromit
Member
Hello,
Please try this snippet:
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 );
Add this code to the functions.php of the child theme.
Best Regards