does anyone know how to get it so that it only says ‘From $27.99’? i dont want it saying the original price crossed out as seen in the photo provided. thanks
Topic summary
A user wants to modify their product pricing display to show only “From $27.99” without the crossed-out original price that currently appears.
Solution Provided:
- Navigate to Shopify > Theme > Customize
- Add custom CSS code to Theme settings > Custom CSS section
- The CSS code hides the second span element containing the original price:
.card-information .price__sale > span:nth-child(2) {
display: none !important;
}
This CSS solution targets the sale price display and removes the strikethrough original price element while keeping the “From” price visible.
Hi @sarpow
You can follow this instruction:
-
Go to Shopify > Theme > Customize
-
Copy and paste this code on Theme settings > Custom CSS section
.card-information .price__sale > span:nth-child(2) {
display: none !important;
}
I hope it helps.
Esther
