Hi Edwin,
You are right. It's not easy to modify those codes of ps_paypal.php,.....
My question is "have you tried this??"
There are many parameters in ps_paypal.cfg.php:
{
Test mode ?
PayPal payment email:
Order Status for successful transactions:
Order Status for Pending Payments:
Accept only verified buyers?
Order Status for failed transactions:
}
And we are going to override all those settings in the beginning of the payment extra info with something like:
if defined( 'MULTISITES_ID') {
switch 'MULTISITES_ID' {
case 'xxxx':
PAYPAL_DEBUG = "1";
PAYPAL_EMAIL=
myemail@myemail.com;
...
case 'yyyy':
;
}
My worry is all those parameters are shared with all slaved sites, will our modification induce any side effect?
Anybody have tried these?
Many thanks.
Seth