How to show product discount as a percentage on my online store?

Dear Shopify,

I need my sale product to show as %dis
Means where there is (sale) written, i need like 25% off,35% off like this,

Thanks,
Noman

Hi @celasta ,

It’s customization work, for that you need to hire a developer or need a developer help,
to add this feature with custom code.

You can contact (https://www.halothemes.com/contact) for support.

If you find this answer helpful, please mark it as a SOLUTION.

Best regards.

Hi @celasta ,

Please go to snippets > card-product.liquid file, in line 94, change code:

Code:


                {%- assign percent = card_product.compare_at_price | minus: card_product.price | times: 100 | divided_by: card_product.compare_at_price | round -%}
                {{ percent }}% off
              

Hope it helps!