Basic number to appear as currency issue

Hey,
There is probably a simple answer but does anyone know how to make {{item[‘Amount’]}}
appear as currency? e.g. $1,000,000.00 ?

{{item[‘Amount’] | money}}
{{item[‘Amount’] | currency}}
{{item[‘Amount’] | money_with_currency}}

These use to work on Shopify but not Treepl?

We don’t have those Liquid filters as yet.
For the comma separation, you could probably do some liquid string manipulation splitting the digits into an array and then inserting a comma every 3 digits??? bit of a hack though…

Hopefully these filters a coming soon.

I added a backlog item for this:

Beautiful!

Does anyone actually have a clean cut version of the hack to make it currency for now until Treepl implements?