Brilliant thanks!
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.