Product Subtitle within collection

Hi everyone,

my name is Michael, I started using Shopify some days ago.

I’m using the Refresh template and created a collection which is integrated on my landing page.

So far everything is working fine.

Unfortunately the title of each product isn’t enough and doesn’t look very well. That’s why I’d like to have a subtitle on the collection for each product. In the picture below is a more detailed overview I’d like to achieve.

Searched within the community and found out that a metafield is required. Looks like this on my side:

Afterwards I tried to integrate the subtitle within my template:

{{ product.metafields.descriptors.subtitle }}

Is it the right place within the template and position?

Unfortunately it doesn’t work for me.

Thanks for your help.

Michael

@123michi19 Hey, thanks for posting here.

first please search "{% for " loop in the code then put it in init

and also please try

{{ product.metafields.descriptors.subtitle.value }}

I hope it will help you

Thanks for your reply. I’m not quite sure if I can follow you correctly with your instruction. Is it possible to describe it more in detail? Am I in the right file / section?

@123michi19 i think yes

please search "{% for " then put

{{ product.metafields.descriptors.subtitle.value }}

under it, and then check front.

Unfortunately not able to get a result for you search string ("{% for ").

@123michi19 can I help you with access?
for now, I’m not helping like this, its difficult to understand you.

Yes, would be happy if you can provide me some support on this topic. How can I create access for you and share the details not public?

@123michi19 check your private message here.

Thank you very much. Right now I has been able with more search in the community to fix my error.

The solution for others was this code within the card_product.liquid file:

{% if card_product.metafields.descriptors.subtitle  %}           
              ### {{ card_product.metafields.descriptors.subtitle.value }}
            {% endif %}