Hello…
I want to show label of some off instead of percentage…
I am using kalles theme…I have code of percentage discount on my site and its working…but somehow i am not able to change it to amount off on the label…
Code of percentage is as follows
{%- if on_sale and settings.use_sale_label and linklists[hd_up].links.size == 0 -%} {%- if settings.label_sale_style == '1' -%}{{ 'products.product.on_sale' | t }}{%- else-%}{%- assign save = product.compare_at_price | minus: product.price | times: 100.0 | divided_by: product.compare_at_price | ceil -%}{{ 'products.product.save_js' | t: saved_amount:save }}{%- endif -%}{%- endif -%} {%- if new_label -%}{{ 'products.product.new' | t }}{%- endif -%} {%- assign badge_tags = product.tags | where: "badge_" -%} {%- if badge_tags.size > 0 -%} {%- for tag in badge_tags limit:3 -%}{%- assign badgeTag = tag | remove: "badge_" -%}{{ badgeTag | capitalize}}{%- endfor -%} {%- endif -%} {%- if sold_out -%}{{ 'products.product.sold_out' | t }}{%- endif -%}Right now it showing - 26% in a red color badge…i want to show 300/- OFF
TIA