when i receive payment via paypal i always get 'no address provided'.
i mailed paypal to find out how to sort this and got this reply:
so my question is where do i change this in actinic?
i searched through the design area but couldnt find anything.
also on a separate issue i downloaded the latest patch so that payoffline would appear in the payments options, but it still doesnt appear.
any help would be great
thanks
raf
i mailed paypal to find out how to sort this and got this reply:
This is a piece of code I caught from your site:
<INPUT TYPE=HIDDEN NAME="no_shipping" VALUE="1">
The variable "no_shipping" is uded to specify to PayPal whether the customer has to provide his address or not:
1: customer is not asked for a shipping address.
2: customer must provide a shipping address.
So you must set the value of that variable to 2.
As that code is part of your cart, you have to find the configuration setting of your cart that switches the value of that variable to 2.
I suppose that you cart has a configuration page, with a specific section for the integration with PayPal; there you should be able to find a setting to switch the request of the address either On or Off.
If you can't find it please contact your cart's provider for details.
<INPUT TYPE=HIDDEN NAME="no_shipping" VALUE="1">
The variable "no_shipping" is uded to specify to PayPal whether the customer has to provide his address or not:
1: customer is not asked for a shipping address.
2: customer must provide a shipping address.
So you must set the value of that variable to 2.
As that code is part of your cart, you have to find the configuration setting of your cart that switches the value of that variable to 2.
I suppose that you cart has a configuration page, with a specific section for the integration with PayPal; there you should be able to find a setting to switch the request of the address either On or Off.
If you can't find it please contact your cart's provider for details.
i searched through the design area but couldnt find anything.
also on a separate issue i downloaded the latest patch so that payoffline would appear in the payments options, but it still doesnt appear.
any help would be great
thanks
raf
Comment