how to display product description in custom category page at woocommerce

I have generated a custom category page in woocommerce, the products are showing successfully under the category but the descriptions do not display on the individual products.

Please help me in this regards.

Related posts

Leave a Reply

2 comments

  1. Use this line where you want to display product description

    <?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ); ?>
    

    Or

    Add this action hook in function.php file –

    <?php add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt', 5); ?>