Re: Display product tags on product page - Dawn 7.0.1

Solved

Display product tags on product page - Dawn 7.0.1

Dekanten
Navigator
343 2 121

Hello

 

I have created some tags for my products while i added them to the store, how can i display these so on the productpage without messing things up?

 

Thanks in advance. 🙂

 

My store:

www.dekanten.no 

Accepted Solution (1)

Harsita
Shopify Partner
46 10 23

This is an accepted solution.

Hi @Dekanten 

 

Thank you for reaching out to the Shopify community.

 

For adding product tags in  product page just go to your theme code editor, and search for file named main-product.liquid in Sections folder. Add the below code  just above the price div.

 

 

 <div class="product-tags">
   {% for tag in product.tags %}
     <span class="tag">{{ tag }}</span>
   {% endfor %}
</div>

 

 

 

Screen shot for reference -

 

Harsita_0-1690537997348.png

You can modify the styling  of the tags as well by making changes in your base.css file.

 

Harsita_1-1690537681886.png

 The product tags should now appear on your product page.

 

Do give it a try and let me know if this was helpful.

Thanks.

Harshita || Recurpay Subscriptions

- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution

View solution in original post

Replies 5 (5)

Harsita
Shopify Partner
46 10 23

This is an accepted solution.

Hi @Dekanten 

 

Thank you for reaching out to the Shopify community.

 

For adding product tags in  product page just go to your theme code editor, and search for file named main-product.liquid in Sections folder. Add the below code  just above the price div.

 

 

 <div class="product-tags">
   {% for tag in product.tags %}
     <span class="tag">{{ tag }}</span>
   {% endfor %}
</div>

 

 

 

Screen shot for reference -

 

Harsita_0-1690537997348.png

You can modify the styling  of the tags as well by making changes in your base.css file.

 

Harsita_1-1690537681886.png

 The product tags should now appear on your product page.

 

Do give it a try and let me know if this was helpful.

Thanks.

Harshita || Recurpay Subscriptions

- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
Dekanten
Navigator
343 2 121

Thank u so much, it works quite well so im pleased with this solution. 🙂

 

Is is possible to add  something like this - between the tags?

 

Damer - Herrer - Unisex - Nisje

makiomilano
Excursionist
29 0 4

same thing here! How to separate them.

AHAY
Shopify Partner
50 5 23

Nicely works, thanks, but I wonder if tags can be hyperlinked ?

 

Edit: just found the solution elsewhere, thank you.

If you find my answer useful please do like/accept it so I feel more motivated to help in my spare time.
Avery
Tourist
7 1 2

Hi there. Could you share the link to your solution for adding the hyperlink to the tags please?