Hi can anyone help with this?
Make price display as SOLD on collection pages when item is sold out - Dawn theme
TIA
Hi can anyone help with this?
Make price display as SOLD on collection pages when item is sold out - Dawn theme
TIA
Hi @JP1704 ,
You can follow the instruction below:
.price--sold-out .price__container > * {
font-size: 0 !important;
}
.price--sold-out:after {
content: "SOLD";
font-size: 12px;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Hi @JP1704 ,
You try revert code, then replace by below code:
#product-grid .price--sold-out .price__container > * {
font-size: 0 !important;
}
#product-grid .price--sold-out:after {
content: "SOLD";
font-size: 12px;
}
.product__info-wrapper .price--sold-out {
display: none;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Thanks so much!
Is there a way of hiding the SOLD badge on collection pages displayed on the images but not the SALE badge. TIA