Paypal custom field on button

I need to enable a custom field when PayPal notifies me of a payment. I am trying to use advanced variables, but I see no way that I can make them dynamic.

Pretend that I have a "xyzzy" field with the value "plugh". I would like PayPal to include form.xyzzy = plugh with all the other fields that it sends to my notify_url.

Of course, the xyzzy value may be "foo", depending on what they want.

+4
source share
1 answer

There is only "custom": input type = "hidden" name = "custom" value = "plugh"

This is returned in the IPN message.

+6
source

All Articles