I cannot figure out to successfully return my custom form data with a PayPal payment. Below is a sample of one of my custom form lines:
<div class="form-row">
<div class="col-4 text-right"><label class="col-form-label">Name:</label></div>
<div class="col-8"><input type="hidden" name="Name" value="mbr_name"/><input id="mbr_name" class="form-control" type="text" style="font-size: 14px;" /></div>
</div>
All of the custom fields are contained within the
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal">
block of code.
The payments are successful but no custom form data is returned. What am I doing wrong?
Thank you.
... View more