How to display product type in Dawn theme?

Hello Guys.

I want to display the product type under the title in product page and feautured collection in my dawn theme as in yoox.com when you explore the products

Thanks in advance

Hi @Eleftheria2022 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Snippet->/card-product.liquid->Find div class “card-information” and add below code in class “cart-infomation”:
{{ card_product.type }}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

is that correct? because i paste it there and nothing appeared, also i got many product templates because i have different products.

Hi @Eleftheria2022 ,

Sorry,

Since each theme will have a different variable, I sent you the wrong variable.

You try {{ product_card_product.type }}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Yes, that’s working fine, can i display it also in product page?

Hi @Eleftheria2022

In Product page. You can find file main-product.liquid. Then try below code:

{{ product.type }}

Hope it can help you

in which line do i have to put this: {{ product.type }}

Hi @Eleftheria2022 ,

This also depends on where you want to show it. you can put under {{ product.title }}

Hope it can help you

also that worked

thank you very much

Hi @Eleftheria2022 ,

Amazing good job. ^^