Hey,
Is There a way to show the “Cross-Over Price” In the cart drawer? I will add an image of the issue and outcome below. Thanks in advance!
My site url: https://bellevodesign.com/
The Issue:
The Desired Outcome:
Hey,
Is There a way to show the “Cross-Over Price” In the cart drawer? I will add an image of the issue and outcome below. Thanks in advance!
My site url: https://bellevodesign.com/
The Issue:
The Desired Outcome:
Hello @bellevo ,
Use this code
{% if item.variant.compare_at_price > item.final_price %}
~~{{ item.variant.compare_at_price | money }}~~
{% endif %}
{{ item.final_price | money }}
Instructions I think you already know btw if not use it in
Sections → cart-notification-product.liquid
I use it at line no. 43 just after {%- endfor -%} and before
Thanks
I’m using Dawn theme version 15.0.2
And here you can check
https://client-store-5.myshopify.com/products/tiffany-co-edwardian-vintage-engagement-ring-2674
It’s a cart page not a cart drawer/popup.
Check your initial question you asked for the cart drawer not for the cart page.
btw you can use the same code for the cart page.
I know, the code does not work in the cart drawer.
Try this
snippets → cart-drawer.liquid
at line no. 159 replace this code
{{ item.original_price | money }}
with this one
{% if item.variant.compare_at_price > item.final_price %}
~~{{ item.variant.compare_at_price | money }}~~
{% endif %}
{{ item.original_price | money }}
This works, thank you so much