The screenshot below is the total field. The currency symbol is at the right and the decimal separator is not what I want. I want to have the symbol positioned at the left and use the “.” separator instead of “,”
You can use the gform_currencies filter to change the symbol position and the separator. See the following page of the documentation for usage examples:
The filter can be used in the theme functions.php file, a custom plugin, or with a code snippets plugin.
Cool!
But the docs have no solution for changing “,” to “.” in the decimal separator.
The article does list all the properties you can change. For the separators, you would do this:
$currencies['EUR']['decimal_separator'] = '.';
$currencies['EUR']['thousand_separator'] = ',';
Everything is solved. Thanks!