How do I configure the currency number formatting?

If you would like to modify the default currency number formatting as shown on your platform, for any currency, you can do the following:

Log into your website via SFTP, you can do this by reading the following blog article: https://www.thrinacia.com/blog/post/new-development-workflow

Once you download the files, locate and edit the following file under: /src/scripts/money_symbols.js

Search for the currency format that you would like to modify using the three-letter currency code. For example, if you would like to adjust Euros, it would be EUR. You can see the below example of the EUR code:

"EUR": {
    "money_format": "{{money_symbol}}{{amount}}",
    "money_decimal_sep": ",",
    "money_group_sep": ".",
    "money_symbol": "€" 
  },

If you want to modify the thousands separator you would have to modify the value for “money_group_sep” to a whitespace like so “money_group_sep” : ” ”

For decimals you would modify the value for “money_decial_sep” like so “money_decimal_sep”: “.”

When you are finished with the changes, make sure that you run gulp build as mentioned in the above article. All steps for building, and re-uploading the built files via SFTP are explained in the above article.

Note: Once making these modifications on your website, please contact support@thrinacia.com or create a support ticket in the nexus system as a request to be excluded from future updates as your changes will be affected by future updates if you are not excluded.