Is it possible to remove the thousand seperator?

Topic summary

A user seeks to remove the thousand separator from price displays in their Shopify store.

Initial Responses:

  • One participant suggests Shopify’s currency formatting documentation, but this doesn’t address the specific thousand separator removal.
  • The user clarifies they only want to remove the thousand separator, not the comma separator, and confirms this is not a dropshipping store.

Solution Provided:

  • A knowledgeable user explains that modifying the Liquid code is required.
  • The fix involves locating price display files (such as main-product.liquid or card-price.liquid) and adding the filter | money_no_comma_separator after the price variable.
  • Code example and screenshot of expected results are shared.
  • A caution is given: those without Liquid coding knowledge should avoid making these changes.

Outcome:

  • The original poster thanks the contributor and indicates they will try implementing the solution.
Summarized with AI on November 24. AI used: claude-sonnet-4-5-20250929.

Is it possible to remove the thousand seperator?

@Prizzless Follow below link through out that you can format your currency.
https://help.shopify.com/en/manual/payments/currency-formatting

@Ujjaval Thank you for the reply. But i cant find how to remove the thousand seperator. Only the comma seperator.

Not a dropshiping store.

@Prizzless

Hi,

You have to have knowledge of liquid code.

The price can be in main-product.liquid or card-price.liquid, etc..

However, you need to add the “| money_no_comma_separator” code after the price as below.

{{- variant.price | money_no_comma_separator | divided_by: 100 -}}

The result will be as below.

If you don’t have knowledge of liquid code, I would not recommend you to change the code.

Hope it helps.

Thanks.

1 Like

@DavidEKim Great, thanks. I will try this out :blush: