Produkt Kurzbeschreibung auf der Shop-Seite anzeigen

add_action( 'woocommerce_after_shop_loop_item_title', 'woo_show_excerpt_shop_page', 5 );
function woo_show_excerpt_shop_page() {
	global $product;

	echo '<div class="product-shortdescr">';
	echo $product->post->post_excerpt;
	echo '</div>';
}