How to create a badge 'NEW' - Craft Theme

I have a website using the Craft theme from Shopify. At the moment I have 2 automatic badges. SALE and SOLD OUT.

I’d like add another one called NEW on our new arrivals products.

Thank you in advance!

Anna

Hi @bellezaboutique

Please add a tag that is new for those products then go to your Online store > Themes > Edit code > open card-product.liquid, find this line of code around line 122


Add this code under the above code. You can change color of badge by change color in background code

{% if card_product.tags contains 'new' %}
    NEW
{% endif %}