change price wording

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.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

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

Hi @sarpow

You can follow this instruction:

  1. Go to Shopify > Theme > Customize

  2. 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