Hello,
Is there somebody who can tell me how can i get the discount percentage shown next to the discount price on the motion theme?
On my site its only showing this:
But i want it like this:
I think its already build in the theme but i cant find
A user seeks help displaying discount percentages alongside sale prices on the Motion theme. Currently, their product pages show only the discounted price without indicating the percentage saved.
Current situation:
Desired outcome:
Suggested solution:
((compare_at_price - price) / compare_at_price) * 100The discussion remains open, awaiting the user to share their existing price template code for more specific implementation guidance.
Hello,
Is there somebody who can tell me how can i get the discount percentage shown next to the discount price on the motion theme?
On my site its only showing this:
But i want it like this:
I think its already build in the theme but i cant find
Can you share the existing code for your Liquid price template?
If not, then the best solution for you is to do the calculation on the fly in Liquid.
You can calculate ((compare_at_price - price) / (compare_at_price)) * 100, and then display that in your “Bespaar” badge.