$args = array(
'post_type' => array( 'product'),
'posts_per_page' => -1
);
$query = new WP_Query( $args );
while ( $query->have_posts() ) :
$query->the_post();
echo(the_title());
endwhile;