Add meta field product card

I want to add this meta field under product card with “Retail price”. Like “Retail price: $120”
How can I do this?
I’m using Dawn theme.

Hi @xeliporit12 ,

Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file card-product.liquid.
Step 3. Find this code

And add this code before the close tag

 Retail price: {{ card_product.metafields.custom.rrp }} 

Result:

If it helps you, please like and mark it as the solution.

Best Regards

Thanks it worked but I just want to show it if it has value, some product i don’t add this metafield. Like the last product

@xeliporit12 , change the code like this

{% if card_product.metafields.custom.rrp %}
   Retail price: {{ card_product.metafields.custom.rrp }}

{% endif %}

You’re amazing! Thank you so much