How can I remove the sale badge on the Testament theme?

Hello Everyone!

I am using shopify Testament theme. I would like to remove the sale badge. Is this badge possible to remove? Please help me. Thank you.

Hello @dreamtechzone_5

Can you share store URL?

1 Like

I haven’t live the theme yet. I’m doing a free trial. It is also a testament. I want to buy this website theme.

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.collection__page .sale-item.sale-item--icon.icn.circle_icon { display: none !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

1 Like

Wow, thank you so much. It worked. But I used that code but when I add the product in the feature product section it shows. Another thing, how to remove it from the product page. Please help me. Thank you.

I used that code but when I add the product in the feature product section it shows. Is this badge possible to remove? Please help me.

Hello @dreamtechzone_5 ,

I understand you are facing an issue with your Sale badge, if you are looking to remove the badge from all the pages or product images in which the sale badge is appearing.

You can use the below mentioned CSS code for removing the Sale Badge from the store.

Kindly add the code at the bottom of the theme.liquid file before tag and save.


Output =>

Before - https://prnt.sc/uXCuFJDWuByA , https://prnt.sc/9SquXfEmrGvf

After - https://prnt.sc/FOashZRvHjDc , https://prnt.sc/lgv5PBNrbLyW

I hope the solution helps you.

Please share if you have any query.

Thank you.

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.sale-item.sale-item--icon.icn.circle_icon { display: none !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.