Customer Information using Susbcription Buttons

Pizzini2018
New Community Member

I need to know if we could ask for more customer information when we create a subscription button, information like:

- Telephone number.

- Address (Postal Code, City, etc.)

- Full name.

- Mail.

- ID.

 

If not, how could we get it?

 

Thanks a lot!!

 

 

Login to Me Too
1 REPLY 1

Anonymous_User
Not applicable

You would need to use the options variables on0, os0, on1, os1, etc. with text input fields to collect the additional data you need.  As the online button creator does not have that option when generating the subscription button code, you could create the basic subscription code you need and save that.  Once you have that code, it's possible to go back and modify it to include the text input fields.

 

Perhaps something similar to this:

 

<table>
<tr><td>
<input type="hidden" name="on0" value="Name">Name
</td></tr>
<tr><td>
<input type="text" name="os0" maxlength="200">
</td></tr>
<tr><td>
<input type="hidden" name="on1" value="Address 1">Address 1
</td></tr>
<tr><td>
<input type="text" name="os1" maxlength="200">
</td></tr>
<tr><td>
<input type="hidden" name="on2" value="Address 2">Address 2
</td></tr>
<tr><td>
<input type="text" name="os2" maxlength="200">
</td></tr>
<tr><td>
<input type="hidden" name="on3" value="City">City
</td></tr>
<tr><td>
<input type="text" name="os3" maxlength="200">
</td></tr>
<tr><td>
<input type="hidden" name="on4" value="State">State
</td></tr>
<tr><td>
<input type="text" name="os4" maxlength="200">
</td></tr>
<tr><td>
<input type="hidden" name="on5" value="Zip">Zip
</td></tr>
<tr><td>
<input type="text" name="os5" maxlength="200">
</td></tr> </table>
Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.