@lorro I deleted this line :
add_action( 'woocommerce_after_shop_loop_item_title', 'wc_add_short_description' );
And now only following code left:
function wc_add_short_description() {
global $product;
?>
<div itemprop="description">
<?php echo substr( apply_filters( 'woocommerce_short_description', $product->post->post_excerpt ), 0,150 ); echo '...' ?>
</div>
<?php
}
But after saving, I have not short description at all.