Official comment
You can now choose your currency symbol and currency code, such as EUR or AUD, but it remains in English. Please see this article for details: https://support.ontraport.com/hc/en-us/articles/217881648#non-us-currency
The text and the currency in the merge field populates with the item in English and the currency in $. It would be nice to be able to adjust the language it populates with and to pick appropriate currency
You can now choose your currency symbol and currency code, such as EUR or AUD, but it remains in English. Please see this article for details: https://support.ontraport.com/hc/en-us/articles/217881648#non-us-currency
Please sign in to leave a comment.
Actually on ontraport we can use the [items_table] merge field to generate invoices, unfortunately this merge field contains a currency symbol that cannot be changed or omitted.
What we propose is to change the behavior of this merge field in order to omit the currency symbol as is possible with the "total" merge field with the parameter "(No Currency Symbol)".
A more extensible way can be the ability for the brave coder :) to generate his own table with the use of foreach-like merge fields e.g:
<table class="my_table">
<thead>....</thead>
<tbody>
[items as item]
<tr><td>[item_description]</td><td>[item_qty]</td><td>[item_price (No Currency Symbol)]</td><td>[item_total (No Currency Symbol)]</td></tr>
[/items]
</tbody>
</table>
Cheers,
Luigi