How to remove 'sale' tag on Taste Theme while keeping the crossed out price?

Hello

I am using the Taste Theme.

I would like to remove the ‘sale’ tag on my product but still keep the crossed out price.

Thank you.

1 Like

Hi,

There should be an option in the theme editor to show/hide sale tags/badges. If not found, it can be done via coding.

Can you share your store URL and visitor password?

@GUSTOHERBS

.card__badge span.badge {
    display: none !important;
}

or

.badge {
    display: none !important;
}

Add this code in the bottom of the base.css file,

Let me, know if you have any other Query,

Thank you

1 Like

Thank you SpeedyDev! That worked!

This worked for me - great solution!

I have one more question though:

I want the “sold out” badge to display when one variant is sold out, even if there are other variants still available - is this possible?

If it is possible - i want only the “sold out” badge to display (when one variant is sold out), but never the “sale” badge.

How would I do this?

Thank you!

Hi @SpeedyDev ,

your solution removes both badges - the sale badge - and the sold out badge.

Is there a way to keep the sold out badge and only remove the sale badge?

Kind regards

1 Like