Spotlight Theme. Remove Strikethrough Price on Collection and Homepage

Hi everyone,

I am using Spotlight theme.

I would like to remove the strike through prices on my home page and collection page.

However, I would like the strike through price to remain on the product page.

andyhle_1-1737137705642.png

Hi @andyhle ,

Please share store url.

Hi,

Here is the store url.

Please share product url.

Hi,

To clarify, I want to remove the strike through prices on my home page and all collection pages so it would just say “From $XXXX.XX”

I would like the strike through price to remain on all product pages.

Hi @andyhle

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
.card-information .price__sale > span:nth-child(2) {
    display: none !important;
}

I hope this helps

Best,

Daisy

1 Like

Hi @andyhle ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css file Add the provided code at the end of the file.

.card-information .price__sale > span:nth-child(2) {
    display: none !important;
}

Perfect, Thank you!

Thank you!