Support Forum › Forums › Mixxcazt – Creative Multipurpose WooCommerce Theme › Display short description in shop › Reply To: Display short description in shop
November 4, 2021 at 10:02 am
#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
}