I’m facing an issue with the pricing section on my website. There’s an unwanted space between “1” and “,” for all products, except for gift cards, where the pricing displays correctly. However, for other products, this space still appears. I tried reaching out to the Shopify help team, but they couldn’t resolve it. I also experimented with different currency formats, but that didn’t work either.
You need to adjust the currency formatting in your theme code, you need to locate the price display code by going to Online Store → Themes → Customize and look out for the files product.liquid , collection.liquid and product-card.liquid
The code will look something like {{ product.price | money }}
Change this to {{ product.price | money_without_currency }} and click on Save.