> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paytring.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Currency Conversion

> A Guide to Multi-Currency Support with Paytring

Expand your global reach by offering customers the option to pay in their local currency. Here's how Paytring's Quick Checkout makes it easy:

## Getting Started

### Use a Currency Converter Plugin

For a quick setup of [Paytring Currency Convertor](https://apps.shopify.com/paytring-currency-converter):

* **Important Setup Step:** Go to the Markets section, choose the markets, and uncheck the checkbox for "Show prices to customers in their local currency."
* **Automatic Detection:** Display prices in the customer's local currency.
* **Real-Time Rates:** Ensure accurate conversions.
* **Customizable Display:** Match your store's branding.

### Advanced Customization

Set the `quick_currency_code` variable in session storage to define the currency:

**Example:**

```jsx theme={null}
sessionStorage.setItem('quick_currency_code', 'CAD');
```

## Payment Gateway Considerations

* **Visualization Pro Plugin:** Ensure the selected currency is communicated to the payment gateway.
* **Auto-Conversion:** If the gateway doesn't support the currency, Paytring will convert it automatically.

## Optimization for speeds

```javascript theme={null}
<script>
    // Create and append the script
    const script = document.createElement('script');
    script.src = 'https://cdn.paytring.com/js/magic/tools/currency_convertor.v2.0.0.js';
    script.async = true;
    script.onload = () => {
      cc_SYNC_RATES();
      cc_SET_SUPPORTED_CURRENCIES(["INR","AED","USD","SGD","GBP","EUR"]);
      cc_CAN_USER_CHANGE_CURRENCY(true);
      cc_SET_SELECTOR_POSITION("right-bottom");
      cc_SET_LOCATION_BASE_CURRENCY_SWITCH(true);
    };
    script.onerror = () => console.error('Failed to load the currency converter script.');
    document.head.appendChild(script);
  </script>
  <style> .money { opacity:0; } </style>
```

## Why Choose Paytring?

Paytring's Quick Checkout provides robust multi-currency support, ensuring a seamless and localized checkout experience. Contact us to learn more and start catering to a global audience!
