How can I remove the sale tag in the Dawn theme?

Hi, I found out the way to remove the sale tag & still keep other tags on the product page:

  1. Edit Code → Assets → Component-price.css

  2. Search for the code (Ctrl + F):

.price–sold-out .price__badge-sold-out,
.price–on-sale .price__badge-sale {
display: inline-flex;
}

  1. Remove “.price__badge-sale” in the code line

  2. Paste this at the bottom:

.price__badge-sale {display:none;}

  1. Done

These steps help you to remove the sale tag on the product page only. It still shows up on the homepage and collection list. That’s all I need :))

8 Likes