How to add extra badges in TASTE theme

How can i add extra custom badge on product page and product card in TASTE theme?

You can definitely add your own custom badge to both the product card (on collection pages, featured product grids, etc.) and the product page itself.

Option 1: Using Metafields (Recommended for custom badges)
This allows you to set a custom badge per product from the Shopify Admin without modifying code each time.

Step 1: Create a Product Metafield
In Shopify Admin:
Settings → Custom Data → Products → Add definition

Name it Custom Badge

Namespace and key: custom.badge

Type: Single line text

Save.

Step 2: Add Badge Code in Product Card Template
Locate product-card.liquid or card-product.liquid under Sections or Snippets.
Find where existing badges (like Sale) are displayed — usually inside a .product-card__badge or similar div.
Add something like this:

{% if product.metafields.custom.badge != blank %}
  
    {{ product.metafields.custom.badge }}
  

{% endif %}

Step 3: Add Badge Code in Product Page Template
Locate main-product.liquid or product-template.liquid under Sections.

Same logic, somewhere near the product title or image gallery:

{% if product.metafields.custom.badge != blank %}
  
    {{ product.metafields.custom.badge }}
  

{% endif %}

If you want to add based on any specific value(tag), then you can do something like this:

{% if product.tags contains 'Organic' %}
Organic

{% endif %}

Hi, gucyu
I’m Danny from Samita team.

To save time and avoid complex edits, you can use an app to display product labels along with example visuals.

Example: Sami Product Labels & Badges – This app makes it easy to add custom labels, badges, or stickers to your products without any coding.