For multi-currency support in a generic conversion tracking pixel, how can I access the currency of an order on the confirmation page?
Since all monetary amounts in the order object are displayed in the presentation currency rather than the shop currency, I need to know the currency for a given order.
This seems like it would work to pull the currency ISO code if a store has not changed the default Currency Formats (and perhaps some do not list the code at the end), so is there a more robust solution?
{{ order.total_price | money_with_currency | slice: -3, 3 }}
Unfortunately it does not seem that cart.currency is available on the confirmation page.