How can I hide sold out prices on Debut Theme?

Hi everyone,

I would like to hide the price of sold out items on my website in the Debut Theme.

Any idea how I could do this?

Website is www.finchleywatches.com

Thank you very much!

Hi @Finchleywatches
Add the below CSS code to the theme in theme.css file

.price--sold-out .price__regular, .price--sold-out .price__sale, .price--sold-out .price__unit {
  display: none;
}
1 Like

Go to your Online store > Themes > Edit code > open theme.liquid file, add this code below under element

2 Likes