Product shop image issue with product video for woocommerce plugin.
-
Hi.
We are using Product Video for Woocommerce plugin from woocommerce. It shows video on shop page & product details page but on woodmart theme it does not shows img on shop page.
We contacted plugin support they replied this :
Please contact to Woodmart theme support and ask them about the hook to display the featured images of the products on the shop page.
The default WooCommerce hooks "woocommerce_product_get_image", "post_thumbnail_html" are not working on the shop page that's why you are facing the issue on the shop page.
Please help us to resolve this issue.
Thank you
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 );
Regards