PayPal form

Issues related to forms.
Post Reply
User avatar
BaconFries
 
 
Posts: 5328
Joined: Thu Aug 16, 2007 7:32 pm

Re: PayPal form

Post by BaconFries »

You are using the wrong payment method for a donation.
✖️

Code: Select all

<input type="hidden" name="cmd" value="_xclick">
✔️

Code: Select all

<input type="hidden" name="cmd" value="_donations">
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PayPal form

Post by alex4orly »

OK, that will solve the Donation payment (will that be mentioned in the return email ?)
If so, this will make it easy to determine what payment is Donation, otherwise it will be assumed to be for Membership

But I wonder - in the Item name - I explicitly write the item, why is it not part of the return message to the Merchant?

Thanks again
User avatar
BaconFries
 
 
Posts: 5328
Joined: Thu Aug 16, 2007 7:32 pm

Re: PayPal form

Post by BaconFries »

You should be able to do this with a Hidden Field.
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PayPal form

Post by alex4orly »

Hello again,

I did, it works just fine

Thnaks again
Post Reply