if you want to add the product short description to your Woocommerce main Shop page or archive pages and display it just below the product title, you just need to add below code into your theme’s functions.php file.
function bpt_excerpt_in_product_archives() {
the_excerpt();
}
add_action('woocommerce_after_shop_loop_item_title','bpt_excerpt_in_product_archives', 40);
Cheri says:
This was exactly what I was looking for, thank you! I used Code Snippits plugin to add instead of modifying the theme files and it worked perfectly.