Home Forums WoodMart support forum Remove Image Placeholder in Woocommerce Catalog Pages Reply To: Remove Image Placeholder in Woocommerce Catalog Pages

#246599

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