> For the complete documentation index, see [llms.txt](https://shoppad.gitbook.io/coin/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://shoppad.gitbook.io/coin/customize-coin/inform-customers-about-the-currency-conversion.md).

# Inform customers about the currency conversion

Before checkout, Coin will automatically convert all prices to a user's local currency.

However, once your shoppers hit the checkout page, any monetary amounts will be shown in your store's base currency (this is a limitation set by Shopify for security reasons) unless you have added the integration between Coin and the Shopify Multi-Currency feature.

{% hint style="info" %}
**Exception:** If your store supports multiple currencies by using Shopify's Multi-Currency feature, Coin will work along with the feature to display Shopify-supported currencies at checkout. [Click here for more information about integrating Coin and Shopify's Multi-Currency feature together.](https://github.com/shoppad/docs-coin/blob/master/customize-coin/integrations/shopifys-multi-currency-feature.md)
{% endhint %}

Adding an informative message to the cart page is a great way to reduce customer confusion. Follow the steps below to do this.

1. Starting from your Shopify admin, click **Online Store**, then click **Themes.**
2. Find the theme you want to edit, click the **Actions** button, then click **Edit** **code**.

<figure><img src="/files/gwYLdJnG5H8STTzZr8WL" alt=""><figcaption></figcaption></figure>

3. On the left side, under the **Templates** heading, click on the **cart.liquid** file. If that does not contain much content, try the **cart-template.liquid** file.
4. Copy the snippet below.

```html
All orders are processed in {{ cart.currency.iso_code }} at the most recent exchange rate available.<br />
```

5. Locate the checkout button code, then paste the snippet above it. Every theme is different, so you may need to play around with the placement to get it exactly where you want it.
6. Save your changes.
