Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Magento multi store multi currency

Tags:

magento

i have 2 store, 1 for USD 2 for CAD

my first store working fine, my 2nd store shows product value CAD when i send in paypal that time CAD value convert in USD, can you suggest me how to slove it i need when paypal goes its show CAD.

like image 404
Jeet Roy Avatar asked Mar 16 '12 10:03

Jeet Roy


People also ask

What is fixer IO in Magento?

Fixer.io is a very simple and easy-to-use API for current and historical foreign exchange (forex) rates. It provides real-time data on the exchange rates for 170 world currencies and is updated every 60 seconds. Fixer.IO Geolocation Currency Converter allows your online store to display prices in multiple currencies.

How do I get currency in Magento 2?

You can use following code: $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $currencysymbol = $objectManager->get('Magento\Directory\Model\Currency'); echo $currencysymbol->getCurrencySymbol();


1 Answers

The solution to this problem lies in this Magento thread; here’s a summary for anyone struggling with this:

  1. You need to set-up multiple websites, one for each currency (not just store views, complete websites)
  2. Set ‘Catalog Price Scope’ to ‘Website’ in System > Configuration > Catalog
  3. Set the Base Currency of each website to its respective currency in System > Configuration > Currency Setup
  4. Set all your currency rates to ‘1.0’ in System > Manage Currency Rates
  5. Now you can set your product prices per store when editing a product, voila!
like image 105
Gershon Herczeg Avatar answered Oct 05 '22 11:10

Gershon Herczeg