• Hello again, I am struggling with another issue which I solved but I don’t know how, I imported some new products and the sale badge it’s shows up again. I tried to use again this CSS code but it didn’t work. As you can see the badge I want to remove is “VANZARE” because I use a plugin where I can rename and move where I want the badge. So that with Discount should appear without that ” Vanzare” .

    Thank you guys!
    .woocommerce span.onsale{ display:none; }

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support carolm29 (woo-hc)

    (@carolm29)

    Hey there, @andi99! Thanks for contacting us. I’m happy to help you.

    It seems the plugin you are using changed how the badge is included.

    Please try the following:

    .wc-block-grid__product-onsale {
    display: none;
    }

    I hope this was clarifying. Please let us know if there’s anything else we can do to help or if you have any questions.

    Have a wonderful day!

    Thread Starter andi99

    (@andi99)

    I used this code but it doesn’t dissapear.. I don’t know why.

    Plugin Support Zubair Zahid (woo-hc)

    (@doublezed2)

    Hello andi99,

    Thank you for your reply.

    The code you added gets overwritten by some other CSS.
    Please try this updated code, I have added !important to ensure it works.

    .wc-block-grid__product-onsale {
    display: none !important;
    }

    Let me know how it goes. 🙂

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.