A space to discuss online store customization, theme development, and Liquid templating.
How to show % discount on a product using Dawn theme
Can you share your store URL and Screenshot of place where you want to add the percentage discount.
If helpful then please Like and Accept Solution. Want to modify or custom changes on store Hire me. Feel free to contact me on mail | Shopify Design Changes | Custom Modifications In to Shopify Theme
Hi @Cerez ,
I'm very late to answer however may be it helps others.
To implement the discount percentage on product card page, please refer the below code.
{%- assign difference = card_product.compare_at_price | minus: card_product.price -%}
{%- assign float_difference = difference | times: 1.0 -%}
{%- assign discount_fraction = float_difference | divided_by: card_product.compare_at_price -%}
{%- assign discount_percentage = discount_fraction | times: 100 | round -%}
{{- discount_percentage }}
To implement the same on product page with line number details kindly refer the video below