How can I remove the sales tag on products in the Wokiee theme?

Hello,

I need some help.

I would like to remove the sale tag on my products in the wokiee theme. Does anyone know how? I have seen similar topics here but all the CSS code does not work for me.

My website is: https://drwonganatomy.com/

Thanks!

Hello,

Hope you’re doing well!

Put the code in theme.css
in bottom of line
span.tt-label-sale {
display: none;

}

@James188 - please add this css to the very end of your theme.css file and check

span.tt-label-sale {display: none;    visibility: hidden;}

@James188

Please add the following code at the bottom of your css file.

span.tt-label-sale {
    display: none;
}

Hi @James188 ,

Sorry for experiencing this problem, I understand you would like to remove sale tag in your products.You can try this code.

  1. Go to themes > edit code >
  2. Go to Asset Folder > click base.css
  3. And Paste the code below at the very end.
span.tt-label-sale {
    display: none;
}

I hope this solution will works. Please follow below steps

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag
span.tt-label-sale { display: none; }

Thank you!

Thanks

It works. Thank you

thank you

thank you so much

@James188 Your welcome

If my solution works, Please like and accept my solution. Thanks