Please tell me where I am going wrong . Product featured image is not showing up.
$args = array( \'post_type\' => \'product\', \'posts_per_page\' => 80,
I had the same problem and solved it by using the default woocommerce hook to display the product image.
while ( $loop->have_posts() ) : $loop->the_post(); echo woocommerce_get_product_thumbnail('woocommerce_full_size'); endwhile;
Available parameters: