Liquid, JavaScript, themes, sales channels
Hi,
I have applied a compare at price on my product, I'd like to display the previous price and the total saving on the cart page and on the checkout page, as currently it is showing only the discounted price, but without reminding the customer about the saving he/she is having.
Would you please help me find the code to do this, and also give me the instructions on specifically where to insert this code, both for the checkout page and for the cart page?
This can be easily done on the cart page, but can only be done in checkout if you're on Shopify Plus.
For the cart page, find where the current item price is and update to something like this:
{{ item.final_price | money }}
{% if item.variant.compare_at_price > item.variant.price %}
<s>{{ item.variant.compare_at_price | money }}</s>
{% endif %}
For savings, you can calculate like this:
{% assign savings = item.variant.compare_at_price | minus: item.final_price %}
You're saving {{ savings | money }}!
Thank you for your help!
Can you please confirm where the code should be placed on the Edit Code section? (e.g. Snippets)
Thanks,
Giulia
Hi Gina,
Thank you for your help!
Can you please confirm where the code should be placed on the Edit Code section? (e.g. Snippets)
Thanks,
Giulia
My example wouldn't be an exact copy/paste situation. The code and where to put it on the cart template would depend on how your theme is built.
Can this be done to the cart drawer that pops up when something is added to cart?
'This can be easily done on the cart page, but can only be done in checkout if you're on Shopify Plus.'
Any pointers as to how to achieve this in the checkout page? I'm playing with the script but havent managed to do this yet.
but which file please ? thanks
but where can this be placed ?
User | RANK |
---|---|
12 | |
11 | |
7 | |
6 | |
6 |
Learn these 5 things I had to learn the hard way with starting and running my own business
By Kitana Jan 27, 2023Would you love to unleash the unbridled power of the Google Shopping Channel into your sho...
By Gabe Jan 6, 2023How can you turn a hobby into a career? That’s what Emmanuel did while working as a wa...
By Skye Dec 30, 2022