Jump to content

Charge payments by moneybookers


Recommended Posts

Hello,

 

If you like to charge moneybookers payments to clients you can add this quick and dirty solution.

for shop version 1.4.

 

Open moneybookers.php ((after making a backup)

 

Go to /* About the cart */ Around line 660.

 

Add the folowing code att the end of the /* About the cart */ code

 

 

if ($mbParams['currency'] == 'EUR')

{

$mbParams['amount'] = $mbParams['amount']+ 1.5;

}

else

{

$mbParams['amount'] = $mbParams['amount']+ 10;

}

 

In this case if currency is EUR, they have to pay 1.5 euro extra, otherwise 10.

 

Good luck.

Link to comment
Share on other sites

×
×
  • Create New...