Home › Forums › WoodMart support forum › YITH Badge Management Issue › Reply To: YITH Badge Management Issue
July 3, 2020 at 8:41 am
#208368
Artem Temos
Keymaster
Try to use the following code and put it into the functions.php file in the child theme to fix this
add_action('init', function() {
remove_action( 'woocommerce_before_shop_loop_item_title', 'woodmart_template_loop_product_thumbnail', 10 );
add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
}, 30 );