Hello. I am looking for an app or advice on some coding that will hide the price on sale items and display the “see low price in cart” message. Any help appreciated, I have not found an app that does this. I am fairly confident I could code this myself but thought I’d ask the community first.
Hi @emily333 ,
You have to find the code for the product price and use the code below as reference
{% if product.compare_at_price > product.price %}
See low price in cart
{% else %}
The price code here...
{% endif %}
1 Like
Is there a way to hide the price for any price that ends in .99?
How do I get to the code to put this in?
In what section do you find product price coding? I am using Dawn scheme.
thanks