Get the product name in Woocommerce
Assuming you get the product as an object
$product = wc_get_product( id );
echo $product->get_title();
(WC version 2.5.2)
Found a solution:-
echo get_the_title( 'ID' );
Take a look here: http://docs.woothemes.com/wc-apidocs/package-WooCommerce.Functions.Product.html