nicubila Posted August 11, 2010 Share Posted August 11, 2010 HiI have the following situation and I am looking for a solution, but so far no successIn the shop (www.standivarius.com) we enabled 3 currencies especially as the clients look to be from all over the world. I would like to keep the 3 currencies further if possible.We also have a merchant account with moneybookers, and seems very cost effective (1.79%). We want to setup the credit card payment but there is a catch: one moneybookers account can be set up for only one currency. It means we need 3 different accounts, which is possible and confirmed with Moneybookers people. They will link the accounts under one company name.What we want to have is an automatic feature that will select the right account for the right currency. We can use only one moneybooker account (let say USD), but then they will convert the currency with a 2% charge, very inefficient. First issue is then if PS can accept multiple moneybookers accounts in the same time. If yes, then if it can select the right one according to the currency.Anyone has an idea on how to approach this?thanksMarius Link to comment Share on other sites More sharing options...
tomerg3 Posted August 11, 2010 Share Posted August 11, 2010 I haven't looked at the moneybookers module, but I'm fairly sure it doesn't have the option of using multiple accounts.You will need to customize the code to select the right account based on the currency, email me for a quote if you're interested. Link to comment Share on other sites More sharing options...
eltitos Posted August 11, 2010 Share Posted August 11, 2010 Like tomerg3 said you will have to modify the code for do that.you have to test it, but i think a basic solution is to edit the moneybookers-form.phpchange the line $mbParams['pay_to_email'] = Configuration::get('MB_PAY_TO_EMAIL'); by something like that if ($currency == 1) $mbParams['pay_to_email'] = '[email protected]'; elseif ($currency == 2) $mbParams['pay_to_email'] = '[email protected]'; elseif ($currency == 3) $mbParams['pay_to_email'] = '[email protected]'; the value 1 2 3 is the id of the currency, you can see it on the bo -> payment -> currencyeach account needs the same secret wordBE CAREFUL : This modification needs to be test Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now