Hello @JarnoBroekkamp
Step 1: Create the metafield definition
1. Go to Settings in your Shopify admin.
( Screenshot by Lightshot )
2. Navigate to Metafields and metaobjects > Products.
( Screenshot by Lightshot )
3. Click Add definition.
( Screenshot by Lightshot )
4. Fill in the details:
Name:`shortdescription`
Type: Multi-line text
( https://prnt.sc/a-zgyEfVv-0V )
5. Click Save.
Step 2: Add a short description to a product
1. Go to Products in your Shopify admin.
2. Select the product you want.
( Screenshot by Lightshot )
3. Scroll down to Product metafields.
4. In shortdescription, enter your text.
( Lightshot — screenshot tool for Mac & Win )
5. Save the product.
Step 3: Show the short description in your theme
1. Go to Online Store > Themes.
2. Find your live theme and click Actions > Edit code.
3. In the sidebar, search for `card-product.liquid`.
4. Inside that file, look for:
```liquid
{% render ‘price’ %}
```
5. Just **above** that line, add the following code:
```liquid
{% if card_product.metafields.custom.shortdescription %}
<p>{{ card_product.metafields.custom.shortdescription }}</p>
{% endif %}
```
( Screenshot by Lightshot )
6. Save your changes.
Now, whenever you add a short description in the metafield, it will appear on your product cards above the price.
Please hit Like and Mark it as a Solution if you find our reply helpful.