Why is the price displaying twice on my product pages?

Topic summary

Duplicate prices appear on product pages after a theme migration. The core issue is likely duplicated price output in the theme’s price snippet.

Proposed fixes:

  • Edit code in Shopify: Online Store > Themes > Edit code > Snippets > price.liquid. Remove the duplicated price line so only a single {{ product.price | money }} remains.
  • Alternative workaround: in Assets > component-price.css, add a rule to hide the extra money span (span.money { display: none;}).

Outcome so far:

  • Original poster confirmed the fix worked. Another user also reported success.

Ongoing issues:

  • One user could not find the exact duplicated code and, after attempts, saw the price appear four times; they requested further guidance.
  • Additional users reported the same double-price issue and a related duplication of color/size options in the Kalles theme, sharing a product link for reference.

Status: Partially resolved. The primary solution is to remove duplicated price markup in price.liquid; CSS is a stopgap. Some cases remain unresolved pending theme-specific code review.

Summarized with AI on December 16. AI used: gpt-5.

Hi Infoatcodelab7,

I have the same problem, only in one of the collections and in the home page in -featured collection-

I opened price.liquid

and from this code
{{ product.price | money}} {{ product.price| money }}

I only found this
I tried to put all of it in comment and end comment and add this code

{{ product.price | money }}

Didn’t work, I tried in different ways and I up ended with the price shown 4 times!
Could you please help me with this?

Thank you