Prices are appearing twice when put on sale

i am using the BLUM theme

when i put a product on sale the prices starts to appear twice on my website.

i have fixed it for product page but unable to do it on collection page.

this URL to my the page is DIWALI GIFT HAMPERS – tagged "hampers"– Akkaara India

I do not understand conding at all,

Please do assist me.

How to Fix (Collection Page)

  1. In your Shopify admin, go to:
    Online Store → Themes → Edit code

  2. In the Search files bar, type:
    card-product.liquid (sometimes called product-card.liquid depending on theme version).
    You’ll find it under Snippets.

  3. Inside this file, look for two separate blocks that display product prices. They usually look like:

{%- render 'price', product: product -%}

You’ll probably see this line twice. That’s why it’s duplicating.

  1. Delete (or comment out) one of them.
    To comment out safely, wrap it in:
{%- comment -%}
{%- render 'price', product: product -%}
{%- endcomment -%}

  1. Save the file.

  2. Refresh your collection page, the duplicate price should now be gone.


Since you already fixed it on the product page, this adjustment only needs to be done in the product card snippet that controls collections and search results.

If this feels confusing or you’re worried about editing code, that’s okay. You can give a collaborator access to your store so it can be fixed for you in less than 5 minutes