> For the complete documentation index, see [llms.txt](https://ei-docs.keywordrush.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ei-docs.keywordrush.com/importing-to-woocommerce/currency.md).

# Currency

### Base currency

{% hint style="info" %}
WooCommerce allows only one base currency.
{% endhint %}

To set the currency for your store, go to `WooCommerce > Settings > General > Currency Options`.

Target websites may have prices in a different currency from your store's currency. If you import products as simple products, the plugin will try to **convert prices** to the default currency.

For External/Affiliate products, you can either convert prices or keep the original currency. For settings, go to `External Importer > Settings > Import > Currency`.

![](/files/-MJI37J0UystkXillSp1)

Selecting 'Add original' does not make your website multicurrency. This option only replaces the currency symbol on the frontend of your WooCommerce catalog. Since external products can't be added to the cart, this is usually sufficient.

### Automatic exchange rates

To convert currencies, External Importer will use [European Central Bank](https://www.ecb.europa.eu/stats/policy_and_exchange_rates/euro_reference_exchange_rates/html/index.en.html) exchange rates. This service doesn't require sign-up, but the set of currencies for which rates are provided is limited. If the desired currency is not listed, you can use Fixer.io as an alternative.

Fixer API has a free plan, but you have to [sign up](https://fixer.io/signup/free) to get your own API access key.

![](/files/-MJI4T98ElIFWWL6Aa8Q)

To set your key, go to `External Importer > Settings > General > Fixer API key`.

You can set the exchange rate manually. Add the following code to *functions.php* of your theme or child theme:

```php
function my_ei_currency_rate ($rate, $from, $to)
{
    if ($from == 'USD' && $to == 'KES')
        return 100.15; // <--- rate
    if ($from == 'KES' && $to == 'USD')
        return 0.01; // <--- rate
}
add_filter( 'ei_currency_rate', 'my_ei_currency_rate', 0, 3 );

```

### How to change the currency when extracting products

Some target websites display prices in different currencies based on the visitor's IP address (in this case, your server IP). For example, if your server is located in the United States, prices will usually appear in USD. However, many sites also allow you to manually set the currency in their settings.

![](/files/-MJI53i7WzhK8XNuBMcU)

To extract prices in a specific currency:

1. Visit the target website and manually set your desired currency and language.
2. Follow the [Custom Cookies Guide](/custom-cookies.md) to capture and apply the cookie settings.

This ensures that all requests are made with the appropriate currency preferences.

{% hint style="warning" %}
Note: This method doesn't work for all websites.
{% endhint %}

Some Chinese online marketplaces (such as bangproduct.com, geekbuying.com, and gearbest.com) also support changing the currency via the address bar. To do this, add the `currency=EUR` parameter to the product URL.

![](/files/-MJI6KjJraVxG0ynNhHr)
