Product Badges
Set up Volume product badges: three defaults (Sale, Sold out, Preorder) plus up to four custom badges via a custom.badge metafield with custom colors.
Last updated
Was this helpful?
Set up Volume product badges: three defaults (Sale, Sold out, Preorder) plus up to four custom badges via a custom.badge metafield with custom colors.
The theme includes pre-set badges:
Sale
Sold out
Preorder
You can add and customize up to four custom badges to your products. To enable custom badges, you need to create a product metafield specifically for badges:
Open your Shopify admin.
Go to Settings → Custom data → Products.
Click 'Add definition'.
Enter 'Badge' as the metafield name, resulting in the custom.badge 'Namespace and key' (important!).
Select the type 'Single line text' with 'List of values'.
Click 'Save'.

Once the metafield for badges is created, you can proceed to add specific badges to each product:
Open the desired product.
Scroll down to the metafields section.
Enter the names of your badges into the 'Badge' metafield.
Click 'Save'.

You can remove the sale badge by adding the following code to your Custom CSS section in Theme Settings:
Please note that this code will remove the badge everywhere in the store.
If you'd like to remove it from the Collection page exclusively, please go to Theme Editor → Collection page template → select the Collection page section and add the code to the Custom CSS field.
Last updated
Was this helpful?
Was this helpful?
.card__badges-item--sale {
display: none;
}