Hi,
I am wanting to display the ‘product short description’ field when viewing the product grid on a page. I would like it to be displayed between the Price and the ‘Add to cart’ and ‘Show Details’ links.
This way the user can see an overview of each product’s details before having to click on one of the products to go into the full product view.
Any advice on how I go about doing this would be greatly appreciated.
Thanks,
Nick
Hi darkroomillusions!
Try adding this to the bottom of your functions.php file.
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt', 5);
Best regards,
Elliott
Perfect! Thank you!