password :
Topic summary
A user needed to remove “Save” tag badges appearing on their Shopify store’s product and collection pages. The badges were displaying discount/sale information that they wanted hidden.
Solution provided:
- Access theme code editor (Edit code)
- Locate the
base.cssfile - Add CSS code at the end to hide the sale badges:
- Targets
span.badge.price__badge-sale.color-accent-2 - Uses
display: none !important;to hide elements - Also hides
.card__badge.bottom.leftelements
- Targets
Outcome: The solution successfully removed the save tags from both product and collection pages. The issue was resolved with custom CSS targeting specific badge classes in the theme.