Multiple Currencies

If you have a global audience for your store, you might be interested in accepting donations in multiple currencies. This is supported by DonateMate.

If your shop if already configured with Shopify to accept multiple currencies, skip to step 2.

Step 1. Shopify allows you to accept payments in multiple currencies, they have a guide to set this up here: https://help.shopify.com/en/manual/payments/shopify-payments/selling-and-getting-paid-in-different-currencies

Step 2. Go to Shopify Admin > Online Store  and select Edit Code for the theme you want to edit. You can do this on a draft theme as well if you just want to see how it will appear.

Step 3. Under Snippets, open the file 'donatemate-snip'.

Step 4. On line 17 of this file, inside the DIV tag, insert the code below:

<select name="currency">
{% for currency in shop.enabled_currencies %}
<option value="{{ currency.iso_code }}">
{{ currency.name }} ({{ currency.iso_code }}) - {{ currency.symbol }}</option>{% endfor %}</select>

Step 5. Click Save and preview your work. If you hare happy, you're done 🎉

Still need help? Contact Us Contact Us