Hello guys as you can see in the image below I have a sale price for this specific product.
But I have the sale price also here, how can I remove only this sale price here. I want to keep only the actually price in black color in this page and nothing else
1 Like
Hello Ope_15 and thanks for your help I appreciate it. I added the code in the CSS Section but it don’t changed anything 
1 Like
Hello there @NikosBat I suggest you copy and paste this code to see if it solves the issue
.price__current.price__current--on-sale:has(.price__current--max), .price__compare-at.visible:has(.price__compare-at--max) {
color: transparent;
}
.price__current.price__current--on-sale:has(.price__current--max) .price__current--min{
color: #1d1d1d;
}
.price__compare-at.visible:has(.price__compare-at--max) .price__compare-at--min {
color: #949494;
}
.price__compare-at.visible {}
.price__compare-at .price__compare-at--min {
text-decoration: line-through;
}
Let me know if it works for you!
1 Like
Hello Bundler-Manuel thanks for replying, where should I paste this code?