Home Forums Basel support forum woocommerce hook for featured images on shop / category pages Reply To: woocommerce hook for featured images on shop / category pages

#224553

Artem Temos
Keymaster

Hi,

Try to add the following PHP code snippet to the child theme functions.php file to fix this

add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
remove_action( 'woocommerce_before_shop_loop_item_title', 'basel_template_loop_product_thumbnail', 10 );

Regards