DocumentationAPI Reference
Documentation

Set Up Your Store

Once the Reach Localize App is installed on your store, use the information on this page to help you guide you through the setup.

Here's an overview of what you'll need to do to set up your store:

  1. Update your currency settings in Shopify
  2. Verify that the update took effect by looking at the "Money" attribute in your code
  3. Add the Reach Checkout additional script
  4. Embed the Reach Localize Script within your store

That's it!

You can optimize your Reach Script further using some of the attributes available.

Currency Settings

Change the store currency formatting in your Shopify admin settings.

Update the "span" tag from to .

Here's an example:

597

🚧

To be safe, ensure the use of quotes or other symbols '<${" etc. doesn't affect the current theme by making this change then checking a preview of your theme for any console errors.

Verify Money Tags

Verify that the update you did in the "span" class in the last step has taken effect. Do this by double checking in your code that all money values are rendered with the | money filter.

Here's an example that shows | money is correctly showing up in the code.

<span>{{ product.price | money }}</span>

To make sure that the price conversions are done correctly, the class=money must be within every that involves a price that needs to be converted on your store.

Reach Checkout Additional Scripts

Add snippet to Settings > Checkout > Additional Scripts

<script>
  // Required for Reach Gateway
  var gip_order_id = '{{ checkout.order_id }}';
</script>

Embed the Reach Script in theme.liquid and checkout.liquid

We recommend creating a snippet called reach-script.liquid with the script configuration below and include it in theme.liquid and checkout.liquid, at the very end of .

To find the code most relevant to your store, please visit My Shop's Custom Code.

<!-- Reach Localize Script -->
<script
   id="gointerpay_localize"
   src="https://assets.rch.io/{Merchant Id}/localize.js"
   data-merchant_id="{Merchant Id}">
</script>
{% include 'reach-script' %}

Script Tag Options

To further customize your shop's code, you can use the attributes described below.

AttributeRequiredValue
id Yes'gointerpay_localize'
src YesLocalize.js script source
data-merchant_id YesYour Merchant ID
data-store_currency NoThe store currency. Defaults to 'USD' if omitted. Set to the 3-char currency code for all other currencies.
data-process_store_currency NoSet to 'true' if Reach will process store currency orders. Reach payment methods will be shown for all currencies including the store currency. Shopify payment methods will always be hidden unless the 'data-whitelisted_store_currency_gateways' flag is used.
data-whitelisted_gateways NoA comma separated list of Shopify gateway codes. Each gateway included will be enabled for localized orders. See Gateway Codes below for more information.
data-whitelisted_store_currency_gateways NoUsed together with the 'data-process_store_currency' attribute. A comma separated list of Shopify gateway codes. Each gateway included will be enabled for store currency orders if 'data-process_store_currency' is also set to true. See Gateway Codes below for more information.
data-envNoScript environment. Defaults to 'production' if omitted, which will use production APIs. Set to 'sandbox' or 'development' when using the corresponding MIDs/API. See Environments below for more information.
data-flc_only NoSet to 'true' if only Reach DHL app functionality is required. Will disable price conversion and payment processing functions.
data-currency_tagNoThis flag can be used to force a shop's visitors to re-localize (clear their cached currency) once every time a new value is set. The value can be any alphanumeric string.
data-disabled_countriesNoA comma separated list of 2-character country codes. The script will be disabled if the shopper is localized to any of these countries.
data-auto_round_pricesNoThis flag is used to enable automatic rounding on all prices across the store.
data-block_ga_crawlersNoThis flag is used to force web crawlers like Google crawlers to use store currency and remain undetected

Gateway Codes:

Gateway CodeGateway
all Using 'all' will override the specific gateway behaviour and show all gateways instead.
shopify Shopify Payments
sezzle Sezzle
paypal PayPal
amazon Amazon Pay
cashCash on Delivery (COD)
afterpayAfterpay
afterpay_naAfterpay North America
bankBank Deposit
money_orderMoney Order

Environments:

Javascript Helper Methods

FunctionNotes
GIP.forceUpdate() Reconvert prices as soon as possible. Can be used when any custom scripts update prices and you want to minimize the time to reconvert, since normally prices convert on an interval basis.
GIP.resetCalculatedCartTotals() Hides any unconverted cart prices. Can be used when any custom scripts update prices and you want to minimize the price flicker of unconverted prices. This can be used in conjunction with GIP.forceUpdate() by calling GIP.resetCalculatedCartTotals() before.
GIP.selectCurrency() Changes the conversion currency. Can be used when the merchant wants a custom currency switcher rather than using the currency selector dropdown that's built in.
GIP.currencyFormats() Helper function that outputs all the currency formats in the console.
GIP.getLocalizeData() Returns a promise which will be resolved with localize data when a rate offer is retrieved. If no rate offer is available, it will resolve to false. See usage notes below.
GIP.getLocalizeData().then(function (data) {
    if (data) {
        console.log(data);
    } else {
        console.log('No rate offer available.');
    }
});

Uninstall conflicting apps from your store

❗️

Uninstall conflicting apps from your store

Reach Localize is powerful but not powerful enough to work accurately when there are conflicting apps already installed in your store. If you have apps that fall under the categories below, kindly uninstall them or stop them before completing your Reach Localize customization.

  1. All currency customization apps installed on your store
  2. Any Geo location apps
  3. Shopify Multi Currency