Forums

Plugin redirects to Paypal.com, not my product page

alsage13 28 Feb, 2010
I have scoured the forums, and while they've helped me put my form together, something in the redirect must be wrong. When I click the submit button, the data goes to the table as it should, but the redirect takes me to paypal.com, not my product payment page. I'm including my code below.

The Hidden Values (Placed in the "Extra fields Data" box)
  <input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="amanda@xxx.com">
<input type="hidden" name="item_name" value="Test Webinar from GGC">
  <input type="hidden" name="item_number" value="webinar1">
  <input type="hidden" name="amount" value="1.00">
  <input type="hidden" name="no_shipping" value="1">
       <input type="hidden" name="no_note" value="1">
   <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="return" value="http://www.xxx.com">


And the target URL is: https://www.paypal.com/cgi-bin/webscr

Where am I going wrong? Thanks!
GreyHead 28 Feb, 2010
Hi alsage13,

Please check the tooltips - what you need in that box is
cmd=_xclick
business=amanda@xxx.com
item_name=Test Webinar from GGC
item_number=webinar1
amount=1.00
no_shipping=1
no_note=1
currency_code=USD
return=http://www.xxx.com

Bob
alsage13 28 Feb, 2010
Wow. Missed that one. Thanks so much Bob!
GreyHead 28 Feb, 2010
Hi alsage13,

No problem, pretty much all the plugins use that 'ini' style of input in the textareas.

Bob
This topic is locked and no more replies can be posted.