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
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
http://forum.opencart.com/viewtopic.php?f=31&t=8291
Try that in catalog/controller/payment/twocheckout.php
That should fix your problem
Try that in catalog/controller/payment/twocheckout.php
That should fix your problem
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.
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.
Who is online
Users browsing this forum: No registered users and 20 guests