New Shopify Certification now available: Liquid Storefronts for Theme Developers

Display discounted price (without compare price) on product pages with Dawn theme

bougli
Excursionist
12 0 4

Hi,

 

I have an automatic discount of 10% setup - I already have the liquid code for the discounted price to display on the collection and home pages, however, I need a code for the discounted price to display on the actual product pages. I do NOT have compare at price setup. I am using Dawn theme. Can anyone assist?

Replies 3 (3)
NomtechSolution
Astronaut
1245 112 141

Replace price code with this:

{% if product.compare_at_price > product.price %}
  <del>{{ product.compare_at_price | money }}</del>
  <span class="product-price">{{ product.price | money }}</span>
{% else %}
  <span class="product-price">{{ product.price | money }}</span>
{% endif %}
banned
bougli
Excursionist
12 0 4

Hi, thanks for your response. Is this code only for if a compare at price has been entered in the product listing? If so, I do not have any compare at prices setup for my products.

bougli
Excursionist
12 0 4

Hi,

Where does this code go? Thanks.