How can I remove red highlighted text from my product page?

Dear Shopify Community,

I would like to remove the red, highlighted text from my product page. The text (i suppose) indicates the end of the sale, but although i disabled the checkbox in the product page settings, it keeps showing it.
I think it is only supposed to be displayed when the checkbox is marked and when there is a sale but it is displayed constantly. I coulndt locate the source in the css as i am not a coder at all.

I hope you can help me “repair” this or at least remove it.
I am using the booster theme.

I hope you can help me out!
Kind regards, Raphael

Here some screenshots:

@Ceares can you send me the url of this page?

Hi @Ceares ,

You can remove it directly at main-product.liquid file, or if you can’t find it, please send me the code of main-product.liquid file, I will check it for you.

1 Like

Hey there, thanks for the fast reply, the link is here:

https://christian-cook.myshopify.com/products/besteck-set-goyang-gross

This is the password:

ontead

Hey thanks for the reply. The code is in the textfile located in the attached zip folder

Hi @Ceares ,

You can try adding this code to your theme to hide the text

  • From your Shopify admin, navigate to Sales channels > online store > themes > actions > edit code

  • Open the theme.scss.css file under the Assets section

  • Paste this code at the bottom of the file

em {
    display: none !important;
}
  • Hit Save

I hope it helps.

1 Like

Perfect, it worked! Thank you so much!

1 Like