Remove Sale tag in dawn theme

Solved
sandihou
Tourist
7 0 3

Hello, I want to use the new dawn theme.  I want to keep the sold-out tag and also the cross out the price but i don't want to have a sale tag. Any idea how i can get rid of this? 

 

thank you so much

Replies 47 (47)
KetanKumar
Shopify Partner
36495 3620 11759

@sandihou 


It can be done by doing some code customization. please send me a personal message and we can discuss what you'd like

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
morganfulton
Tourist
7 0 5

Did you manage to get it sorted? 😊 I still haven’t got a solution yet. 

KetanKumar
Shopify Partner
36495 3620 11759

@morganfulton 

please share store url?

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
sandihou
Tourist
7 0 3
No one has given me one yet still awaiting

Sent with [ProtonMail](https://protonmail.com/) Secure Email.
morganfulton
Tourist
7 0 5

https://fox-trading-limited.myshopify.com Here you go. Many Thanks 🙂 

VuongTuanAnh
Explorer
50 0 14

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;
}

3. Remove ".price__badge-sale" in the code line

4. Paste this at the bottom:

.price__badge-sale {display:none;}

5. 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 :))

morganfulton
Tourist
7 0 5

Oh yay! Thank you. I will give it a go now. 

CoutureAerie
Tourist
3 0 3

Hi all - thanks for these posts - got "Sale" off my product page, but can anyone help me get off off home page and elsewhere?

KetanKumar
Shopify Partner
36495 3620 11759

@CoutureAerie 

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community!😊
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
CoutureAerie
Tourist
3 0 3

Thanks! my url is www.CoutureAerie.com

 

KetanKumar
Shopify Partner
36495 3620 11759

@CoutureAerie 

thanks for url can you please try this code

1. Go to Online Store->Theme->Edit code
2. Asset->/component-card.css ->paste below code at the bottom of the file.

.card__badge {display: none;}

 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
CoutureAerie
Tourist
3 0 3

THANK YOU!!!!

KetanKumar
Shopify Partner
36495 3620 11759

@CoutureAerie 

if my pleasure to help us 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
NewYorkais
Tourist
23 0 2

Hello, 

 

Is there any way to remove the "sale" badge on collection page, without removing the "sold out" badge on collection page?

Zworthkey
Shopify Partner
5581 642 1535

@NewYorkais Welcome to the Shopify community.
Happy to help you.
Kindly Share your Store Url So i will help you.
Thank you.

AlohaAkahai
Shopify Partner
36 1 13

DELETED. 

AlohaAkahai
Shopify Partner
36 1 13

You solution over looks one thing in that .card__badge doesn't remove it from pages. 

 

Those who want to remove the item from item pages

 

change in the main-product.liquid

 {%- render 'price', product: product, use_variant: true, show_badges: true, price_class: 'price--large' -%}

 

to 

 

 {%- render 'price', product: product, use_variant: true, show_badges: false, price_class: 'price--large' -%}

 

Only change is show_badges.

 

Maxim19
New Member
1 0 0

Go to "Assets", then "base.css", then Ctrl + F, type ".badge", look for a block of code with options like "border", "border radius" etc, just type type "display: none;" at the end of the block within a } bracket, and you are good. 

Andre22222
New Member
2 0 1

This will also remove the sold out badge. We are asking to remove only the sale badge please

AlohaAkahai
Shopify Partner
36 1 13

I already answered this very question for someone else at 

 https://community.shopify.com/c/online-store-2-0/sale-tag/m-p/1570933#M3460