Studio Theme - Collection Pages - Display Product Type

Topic summary

Goal: Show Product Type (instead of Vendor) on collection product cards in the Studio theme, specifically between the product title and price under the product image.

Solution provided:

  • Navigate to Online Store > Themes > Actions > Edit Code > snippets > card-product.liquid.
  • Insert the Liquid variable {{ card_product.type }} in the card markup where you want Product Type displayed (typically where the Vendor text appears).
  • This pulls the product’s “Type” field and renders it on the card.

Notes:

  • Images illustrate the desired placement, but the central change is the single Liquid snippet.
  • There is no built-in theme setting for this swap; a small code edit is required.

Outcome: The original poster confirmed the change worked exactly as needed. Status: Resolved; no further questions or issues raised.

Summarized with AI on February 6. AI used: gpt-5.

The Studio theme gives me the option to display Show vendor between the Product title and Price, under the product photo. Would it be possible to display the Product Type here instead?

Something like this…

Thank you, Richard

Hi @HardwickStudio ,

You can achieve it with a small code change.

Go to Online Store > Themes > Actions > Edit Code > snippets > card-product.liquid

As highlighted in the screenshot, please add the following line.

{{ card_product.type }}

If you have found the answer helpful, please like my replies and mark the question as solved.

1 Like

Thank you once again for your help. That’s exactly what I was wanting.