#2781

I fixed this code again:

add_action('woocommerce_shop_loop_item_title', 'wc_add_short_description', 10);

function wc_add_short_description() {
	global $product;

	?>
        <div itemprop="description">
            <?php echo apply_filters( 'woocommerce_short_description', $product->get_short_description() ) ?>
        </div>
	<?php
}