Hello, I am using the new dawn theme 3.0. I want to cross out the original price on discounted products, but I don’t want to have a sale tag. Any idea how to do this?
Thanks!!
Hello, I am using the new dawn theme 3.0. I want to cross out the original price on discounted products, but I don’t want to have a sale tag. Any idea how to do this?
Thanks!!
Hi DigitalMP,
We have a quick solution for this to add a style sheet that will do the trick
.product .badge.badge–bottom-left {
display: none!important;
}
Or if you need to hide collection page badge then you can use
.collection .badge.badge–bottom-left {
display: none!important;
}
in case both
.collection .badge.badge–bottom-left, .product .badge.badge–bottom-left {
display: none!important;
}