Remove "Sale" sticker and crossed out compare at price

I’ve seen variations of this question but cannot seem to implement the correct code for my store.

I need to remove both the Sale sticker and the crossed-out Compare Price from all product pages. What is the best solution for that? I cannot recall how I even added those things long ago. Help!

Hello @thalianapparel .
Our team is ready to help you.
Please share your website address and access password (if necessary) so that we can check and assist you.

Yes, it is: www.thalianapparel.com

  • Then find the base.css or theme.css or theme.scss.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.product-single__title sup .product-tag, .product-single__price--compare  {
     display: none !important;
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.

Feels like I am getting close but I cannot find the .css files you mentioned. I see:

Is .liquid the same?

can you search “css” and take a picture for me to see

Hi @thalianapparel

This is Amelia from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: paste bellow code in tag → save.

#ProductSaleTag-product-template-7, #ComparePrice-product-template-7 { display: none; }

Hope that my solution works for you.

Best regards,

Amelia | PageFly

Like this?

Hello @thalianapparel

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.product-single__info-wrapper span.product-tag.gradient-theme, s.product-single__price { display: none !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.


Or can you try add this code above tag in file theme.liquid.

and if you want to search file. you can search in here

AMAZING, thank you so much!

Glad to help you. Have a good day.