Why is the price displaying twice on my product pages?

@ClareLow

For show price only once then you need to make some changes in code in price snippet.

to change code follow this steps :

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Snippet > price.liquid and find this code :

you can find your code goes like this


 {{ product.price | money}}
 {{ product.price| money }}

then you need to change code like this

 {{ product.price | money }} 

and that’s all. your issue will be solved.

Best Regards !