A space to discuss online store customization, theme development, and Liquid templating.
How do I hide the price of sold out items in debut theme?
Hi @Ktn,
Go to Assets > theme.css and paste this at the bottom of the file:
.price--sold-out .price__regular{
display: none !important;
}
Hope it helps!