Why aren't my sale prices displaying correctly on my website?

I submitted this question to Shopify Support a week ago and haven’t received a response.

I am closing my store and putting everything on sale. I’m putting the old price in the “Compare at” field and the sale price in the “price” field.

Why is my appearing on my website as the regular price, then the regular price crossed out and then how much the savings is? It used to show the new price, the old price, and the savings.

I use the shopify theme

Homefeathers & Co. ~ Home ~ Shopify (homefeathers-co.myshopify.com)

1 Like

@downhometexas

Because you have added the same sale price and the regular price.
or you have changed by the code.
you have to need a developer help to modify it.

1. This code help you to display the Discount in % .

{% capture discount %}
{{ product.compare_at_price_max | minus:product.price | times:100 | divided_by:product.compare_at_price_max }}% 
{% endcapture %}

or check out this link.
https://www.howcommerce.com/shopify-sale-price/

Note: Compare price must be high then the actual price.

I hope this things help you.
Thank you.