Custom metafields not appearing on product cards

Hello all,

I want to create a third line on my collection page product cards that lists the size of each product.

I went in and added a custom “size” metafield and added the following custom liquid to the code:

size: {{ product.metafields.custom.size }}

The website pulls the metafield title but not the size itself. I’m left with the result in the below image. Can anyone tell me why the size isn’t populating?

Hi @vfp1 ,

May I suggest code below:


          

 size: {{ card_product.metafields.custom.size }} 

        

That worked, thank you!!!