Shopify themes, liquid, logos, and UX
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 }}!
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.
but where can this be placed ?
item.final_price is not working so I changed this to cart.total_price which called the value but I am unable to call value for item.varian.compare_at_price. What am I doing wrong?
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
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
should i place it at the end of the code?
Thank you
Please help. I'm using the impact theme and copy/paste it in price-list.liquid but it doesnt work
Anyone looking for a solution to this can be found on this thread
https://community.shopify.com/c/technical-q-a/display-compare-at-price-on-checkout-page/td-p/1355520
YW 😄
Hey Community! As the holiday season unfolds, we want to extend heartfelt thanks to a...
By JasonH Dec 6, 2024Dropshipping, a high-growth, $226 billion-dollar industry, remains a highly dynamic bus...
By JasonH Nov 27, 2024Hey Community! It’s time to share some appreciation and celebrate what we have accomplis...
By JasonH Nov 14, 2024