How to remove Sale and Sold Out buttons after Dawn theme update?

After updating my Dawn theme from version 9 to version 10 - I now have 2 buttons on my shopify product pages.

A SALE button and SOLD OUT button. See screenshot below.

They were not there before the update,

Any clue how to fix that to remove the SALE and SOLD OUT buttons ?

https://ShopSerotta.com

1 Like

Hello @powerguy

.price--show-badge .badge{
    display: none;
}

Please add this css in your base.css file.

Thanks.

Thank you very much Webizito ! That worked just fine.

Now. If I can just remove my duplicate page prices that are just above the buttons you just helped me remove.

I only need one price. Two prices - one over the other is confusing some of my visitors.

1 Like
.price .price__container .price__regular{
    display: none;
}

Add this css

the base.css file ?

1 Like

Yes