How to display saved amount in dollars on refresh theme?

How to show saved amount in dollars on refresh theme?

@Ajay22 - check if you have an option to show it from customize settings, if no then will need code editing

@Ajay22 add below code into price.liquid file


{% if product.compare_at_price > product.price %}

You save {{ product.compare_at_price | minus: product.price | times: 100.0 | divided_by: product.compare_at_price | round }}% 

{% endif %}

It shows the percent, I want the saved amount in dollars, any idea for that?