WordPress with woocommerce custom query

    // Standard loop
if ( $products->have_posts() ) :
    while ( $products->have_posts() ) : $products->the_post();  
    endwhile;
    wp_reset_postdata();
endif;

This literally shows no data. Try adding at least the_title(); in there.