Sale price

Topic summary

A Shopify store owner is trying to remove the sale price display from a specific page while keeping only the regular price in black. They want the sale price to remain in the product settings but not show on this particular page.

Current Status:

  • Initial CSS solution provided by Ope_15 did not resolve the issue
  • Bundler-Manuel offered an alternative CSS code snippet that targets specific price classes to hide sale pricing elements
  • The code aims to make compare-at prices transparent while maintaining the regular price visibility

Next Steps:

  • User needs clarification on where to paste the provided CSS code
  • Solution remains unverified and implementation pending

The discussion includes screenshots showing the product page layout, though the exact placement location for the CSS fix has not yet been specified.

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

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 :confused:

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?