Currency format

Hi, I’ve got seemingly quick and easy question I want to change currency format in our CRM instance.

By default crm puts it like this:
[currency_symbol][amount] example $500
instead I’d like to display it like this:
[amount][currency_symbol] example 500$

I couldn’t find solution for this online, I’ve seen it done the other way before, but I can’t find solution.
The closest thing I found online is thread below, but it’s without an answer.

I also tried to dig around config file for possible solution but couldn’t find anything.
Thanks in advance :slight_smile:

@Krzyffo
Look at function: format_place_symbol in file: modules/Currencies/Currency.php .

1 Like

Exactly what I needed!
Thank you.