Articles on: Products & Collections

Add brand name & tags on product page



In this article :

Add Brand name
Add Product Tags

⚠️ Kindly take note :

Above all code editing, you will need to re-edit the code again if you switch to a new theme template

We do not allow to change or edit the code for the checkout page (which include shipping & payment method) due to security reasons

1. Add Brand Name



📌 Note : Make sure you have filled in the Brands column for your product



Step 1 : EasyStore admin panel > Channels > Online Store > Edit Source

Step 2 : Select product.liquid file under templates > Look for {{ product.title }} and paste the code before {{ product.title }}

{% if product.brands[0] %}

#### {{ product.brands[0] }}

{% endif %}


💡 Tips : If you want the product brand to be under the product title, just paste the code below <h1 itemprop="name">{{ product.title }}</h1> will do



Step 3 : Save

Before :





After :





2. Add Product Tags



📌 Note : Make sure you have filled in the Tags column for your product



Step 1 : EasyStore admin panel > Channels > Online Store > Edit Source

Step 2 : Select product.liquid file under templates > Copy the code below

{% for tag in product.tags %} {{tag}} {% endfor %}


Step 3 : Paste it before {% if settings.social_sharing_products %}

💡 Tips : You can add <p> for additional space between the tags & social media sharing.



Step 4 : Save

Result :



Updated on: 23/09/2022

Was this article helpful?

Share your feedback

Cancel

Thank you!