Page 1 of 1
2checkout question - currency?
Posted: Thu Nov 26, 2009 4:02 pm
by bigbrother72
I have opencart site with 3 currencies.
When I try make checkout on 2checkout - i see on 2checkout page price next example:
95 eur in opencart -> 95 usd on 2checkout
1000 rub in opencart -> 1000 usd on 2checkout
How i must modify opencart for:
95 eur in opencart -> 143.36 usd on 2checkout
1000 rub in opencart -> 34.63 usd on 2checkout
Re: 2checkout question - currency?
Posted: Sun Nov 29, 2009 4:56 am
by bigbrother72
uppp
Re: 2checkout question - currency?
Posted: Mon Nov 30, 2009 11:56 pm
by Qphoria
http://forum.opencart.com/viewtopic.php?f=31&t=8291
Try that in catalog/controller/payment/twocheckout.php
That should fix your problem
Re: 2checkout question - currency?
Posted: Sun Mar 07, 2010 5:03 am
by Nageen
i have same problem in v 1.4. and i place same code but problem is still there mean $50.00 ---> 50.00€
please help me, it is urgent
Nageen
Re: 2checkout question - currency?
Posted: Mon Apr 16, 2012 2:37 am
by Medina
Any solution to this issue? ...
Re: 2checkout question - currency?
Posted: Mon Apr 23, 2012 7:58 am
by bespokeshop
To fix this just change the following code in /catalog/controller/payment/twocheckout.php:
Find: $order_info['currency_code'], $order_info['currency_value'], false) - There will be 3 instances or at least there are on v1.5.2.1.
Change them to: 'USD', false, false)
NOTE
*******
Where I have written "USD" it is important that you replace this with the three digit code to match with whatever your currency is set to on 2Checkout as your base currency. ie GBP, CAD, EUR etc
Good luck.
Re: 2checkout question - currency?
Posted: Mon Apr 23, 2012 1:20 pm
by Medina
Works perfect (version 1.4.9.1), thank you ...