WordPress Visual Composer, Woocommerce Featured Product with short description

Solution:

Yes You can. Just paste this lines of code into your theme’s woocommerce/content-product.php file right after this line

do_action( 'woocommerce_shop_loop_item_title' );

global $product;
if ( $product->is_featured() ) {
    echo apply_filters( 'woocommerce_short_description', $post->post_excerpt 
  );
}