PDA

View Full Version : paypal $ to €


uniscout
09-02-2006, 07:05 PM
hi again

if i (user) want to pay with paypal they show me by paypal $**** USD howe can i change it to euro (€) EURO ?

thanks

yabsoft
09-04-2006, 02:18 PM
hi again

if i (user) want to pay with paypal they show me by paypal $**** USD howe can i change it to euro (€) EURO ?

thanks
To change the currency from USD to EUR (or other supported currencies) open:
IPN/processor/inc/pp.inc.php

find:
USD (line 16)

change to
EUR (or whatever currency you want)

Edit "register.php":
line 171:
$details[descr]='$'.$fees[$k].'/'.$plan.' '.$units[$row[subscr_unit]];

Change to
$details[descr]='€'.$fees[$k].'/'.$plan.' '.$units[$row[subscr_unit]];

Edit "members.php":
line 309:
$details[descr]='$'.$fees[$k].'/'.$plan.' '.$units[$row[subscr_unit]];

Change to
$details[descr]='€'.$fees[$k].'/'.$plan.' '.$units[$row[subscr_unit]];

uniscout
09-04-2006, 08:56 PM
ok thank you for help

krysteo
02-23-2007, 08:36 PM
Hello,

It's work for register but in service the price is always in $. What do we have to change for have € ?

thanks

scoopy
02-23-2007, 08:51 PM
change in service.php:

$price_list.='$'.($fs[$i]).'/'.$ps[$i].' '.$units[$row[subscr_unit]].'<br>';

to

$price_list.='€'.($fs[$i]).'/'.$ps[$i].' '.$units[$row[subscr_unit]].'<br>';

krysteo
02-23-2007, 09:02 PM
Ok, thanks.