未在商店页面显示的产品的简短描述(archive-product.php)

I have been trying to figure out how I can display the short description for each product at the shop page(archive-product.php).

Here in this screenshot you can see i have placed a dummy text at the short description field.

http://i255.photobucket.com/albums/hh140/testament1234/excerpt_zpse08fd1d6.jpg

But it doesn't reflect on the shop page. It only shows the product price, rating and also add to cart button

http://i255.photobucket.com/albums/hh140/testament1234/description_zps916077d0.jpg.

I have already copied the woocommerce templates files and placed them at woocommerce folder in the root of my theme

UPDATE:

 //ADD SHORT DESCRIPTION SHOP PAGE
if ( ! function_exists( 'add_product_description' ) ) {
    function woocommerce_template_loop_price() {
            wc_get_template( 'single-product/short-description.php' );
        }
    }

You can achieve this using the woocommerce_after_shop_loop_item action hook. In woocommerce you can define your own function which will trigger and add the description to your product. To achieve this ,use

add_action( 'woocommerce_after_shop_loop_item', 'add_product_description');

if ( ! function_exists( 'add_product_description' ) ) {
    function add_product_description() {
            wc_get_template( 'loop/product_description_snippet.php' );
    }
}

Create a file product_description_snippet.php(inside the theme/woocommerce/loop) ,where you can add code to grab product description.