Hi @mikebutcher
Yes, you will need to add the {{ product.description }} code. I am assuming you have the latest theme. Please follow the instructions below.
-
From your Admin page, go to Online Store > Themes > Select the theme you want to edit > Click the three dots > Edit code
-
Open the card_product.liquid under the Snippet folder
-
Look for the word “card__information” somewhere line 146. Then add the code below. See image for reference.
NOTE: The code below only applies to featured collection section. If you want it to apply to all product card, just paste the code {{ card_product.description }}
{% if section.id contains "featured" %}
{{ card_product.description }}
{% endif %}
Be mindful in using this, since some product have a long description
