Shopify themes, liquid, logos, and UX
Hi there,
can anyone please let me know how to add collection title to my product page so that my products will display what collection they are under.
so below image, I want to add collection title in for each of my product on top of the product title
greatly appreciated if anyone can help
Solved! Go to the solution
This is an accepted solution.
Hello @Chriselle ,
I understand you are looking to display Collection title above the Product title in the Product Detail Page.
For implementing this change you have to add small piece of code in your main-product.liquid file.
Please follow the steps for the desired change -:
1. Online Store -> Themes -> Click On three Dots (Action) -> Edit Code
2. Open main-product.liquid file and add the below shared code at the right place
3.
{% for collection in product.collections %}
<p class="collection-title">{{ collection.title }}</p>
{% endfor %}
I hope the solution helps you.
Thank you.
@Chriselle Hey, thanks for posting here.
use this concept, hope it will work:
<div class="product">
{% for collection in product.collections %}
<h2>{{ collection.title }}</h2>
{% endfor %}
<h1>{{ product.title }}</h1>
<!-- Other product details and markup -->
</div>
This is an accepted solution.
Hello @Chriselle ,
I understand you are looking to display Collection title above the Product title in the Product Detail Page.
For implementing this change you have to add small piece of code in your main-product.liquid file.
Please follow the steps for the desired change -:
1. Online Store -> Themes -> Click On three Dots (Action) -> Edit Code
2. Open main-product.liquid file and add the below shared code at the right place
3.
{% for collection in product.collections %}
<p class="collection-title">{{ collection.title }}</p>
{% endfor %}
I hope the solution helps you.
Thank you.
In Canada, payment processors, like those that provide payment processing services t...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025