How can I remove the sale price from my product grid?

Hello, I’d like to remove the crossed out red Sale Price under my item.

Link

https://hiltonpianocenter.myshopify.com/pages/deals

Thanks in advance.

Hi @thomasmchl

Please go to customize of that page, select that section and add this code in Custom CSS

.static { display: none !important; }

Hello @thomasmchl

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->screen.css>Add this code at the bottom.

.price span {
    display: none;
    visibility: hidden;
}