When listing orders using perch_shop_orders is it possible to show the symbol for the currency used to pay?
There is a currencyID available but I can't see any documentation to reverse engineer this to a symbol.
When listing orders using perch_shop_orders is it possible to show the symbol for the currency used to pay?
There is a currencyID available but I can't see any documentation to reverse engineer this to a symbol.
Hello Tony,
If your store only accepts payments in one currency, you can hardcode it. Alternatively, you can use the each option to get the currency symbol for each order in the list:
And in your template you can use currencySymbol:
Thanks Hussein, I'll give it a try.