Reputation: 13
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.
Upvotes: 1
Views: 1431
Reputation: 1299
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); ?>
Upvotes: 0
Reputation: 4110
Just try this in your custom template page
<?php echo apply_filters( 'woocommerce_short_description', $post->post_excerpt ) ?>
Upvotes: 1