removing sale button

hello! how can I remove the sale button from appearing on the product pages? TIA studio theme campomadero.com

You could try this:

In your base CSS file (Online Store > Themes > … > Edit Code),

then add this:

.price__badge-sale { display:none; }

Just double-check that it doesn’t change anything you don’t want it to.

Hi @HCM15

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.badge.price__badge-sale {
    display: none;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

hello! it still shows

it worked thank you!