Remove Sales Badge - Collection Page - Theme Fashionopolism

Topic summary

A user seeks to remove the sales badge from collection pages on the Fashionopolism Shopify theme.

Two CSS Solutions Provided:

  • Multiple respondents suggest adding .sale-item{display: none;} to the bottom of the stylesheet.css file
  • Access via: Shopify Admin → Online Store → Themes → Edit code → stylesheet.css

Alternative Code-Based Approach:

  • Locate and edit product-grid-item.liquid (or similar file depending on theme version)
  • Find the conditional code block that displays the sale badge:
    {% if product.compare_at_price > product.price %}
    <span class="badge sale">Sale</span>
    {% endif %}
    
  • Either comment out or delete this entire block

Status: Multiple solutions offered; awaiting confirmation from original poster on which method worked.

Summarized with AI on October 29. AI used: claude-sonnet-4-5-20250929.

I am looking for the location and code to remove the Sales Badge from the theme Fashionopolism. I’ve seen post for other themes but the sections are different.

Here is the url to the website:

Thanks,

Chris

1 Like

@ChrisKap please add this css to the very end of your stylesheet.css file and check,
Shopify Admin → Online Store ->Theme → Edit code → stylesheet.css

.sale-item{display: none;}

@ChrisKap

Please add the following CSS code to your assets/stylesheet.css bottom of the file.

.sale-item{display: none;}

Thanks!

1 Like

Hey! I had the same issue when trying to customize the Fashionopolism theme for my collection pages. To remove the sales badge, I edited the theme’s code:

  1. Go to Online Store > Themes > Edit code

  2. Open product-grid-item.liquid or similar file (it depends on the theme version)

  3. Look for the section that adds the “Sale” badge — something like:

  4. {% if product.compare_at_price > product.price %}
    Sale
    {% endif %}

    1. You can comment it out or remove that block completely.
  5. If you’re not sure about editing theme code, I shared a quick guide on what I did on my blog:

    Hope that helps someone else struggling with this!