Solved

Can I hide sale prices and display "see low price in cart" on Shopify?

emily333
New Member
4 0 0

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.

Accepted Solution (1)

made4Uo
Shopify Partner
3804 713 1124

This is an accepted solution.

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 %}

 

Volunteering to assist you!  Likes and Accept as Solution  is highly appreciated.✌
Coffee fuels my dedication. If helpful, a small Coffee Tip would be greatly appreciated.
Need EXPERIENCED Shopify developer without breaking the bank?
Hire us at Made4Uo.com for quick replies.
Stay in control and maintain your security by avoiding unnecessary store access!

View solution in original post

Replies 4 (4)

made4Uo
Shopify Partner
3804 713 1124

This is an accepted solution.

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 %}

 

Volunteering to assist you!  Likes and Accept as Solution  is highly appreciated.✌
Coffee fuels my dedication. If helpful, a small Coffee Tip would be greatly appreciated.
Need EXPERIENCED Shopify developer without breaking the bank?
Hire us at Made4Uo.com for quick replies.
Stay in control and maintain your security by avoiding unnecessary store access!
emily333
New Member
4 0 0

Is there a way to hide the price for any price that ends in .99?

 

lauralee219
Tourist
14 0 1

How do I get to the code to put this in?

DMat
Visitor
1 0 0

In what section do you find product price coding? I am using Dawn scheme. 

 

thanks