Home Forums WoodMart support forum Not showing the product image in quick-view

Not showing the product image in quick-view

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #331563

    icewolfbrands
    Participant

    I use Bdroppy to import products on my website. All products have external URLs for images.

    Attachments:
    You must be logged in to view attached files.
    #331572

    Hello,

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

    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 );

    Best Regards

Viewing 2 posts - 1 through 2 (of 2 total)