Hide saved amount in a specific collection

Topic summary

A Shopify store owner using the Impulse theme wants to hide the saved amount (e.g., “-30%”) for products in one specific collection only, while keeping it visible elsewhere on their site.

Current Situation:

  • The theme has a built-in option to hide saved amounts, but it applies globally to all collections
  • The target collection has its own specific theme settings

Proposed Solutions:

  • Use Liquid conditional logic with {% unless collection.handle == 'collection-name' %} to wrap the saved amount code
  • Target the specific collection by its handle to selectively hide the discount display
  • Custom code implementation is required since theme settings don’t support per-collection control

Next Steps:
Multiple developers offered to implement the solution if provided with:

  • Collaborator access code
  • The specific collection name/handle where the change should apply

The discussion remains open, awaiting the store owner’s decision on implementation.

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

Hello,

On my website www.lothaire.fr, i’d love to be able to hide the saved amount only in a specific collection (that has its own specific theme, if it helps).

Any idea how I can do that ? I’m using the Impulse theme.

Thank you.

Hi @LothaireBordeau ,

You want to hide the cutdown price or percentage ? Please check attached screenshot:

Hey,
In order to hide the amount saved for your collection page product cards you can use the if condition for this. In the if condition you can target it via it’s handle. See example below.

{% unless collection.handle == 'summer-sale' %}
  <!-- Saved amount code -->
  <span class="price__save">
    {{ 'products.product.save_html' | t: saved_amount: saved_amount | default: 'Save' }}
  </span>
{% endunless %}

If you want me to implement the same in your store then share the collections name where you want to show the amount saved along with the collab code in the p/m so that I can implement in a right way to your store.
Thanks

1 Like

Hello ! I want to hide the saved amount. For example “-30 %”

@LothaireBordeau ,

In product grid section there is option to hide but it will affect in all collection so need to do custom code for particular collections. If you want me to implement then plz share collab code so i can able to edit the code.

Here is attched screenshot :

Thank you :slight_smile: