Page 1 of 1

Okay, I'm stumped

Posted: Fri Jun 21, 2019 4:39 pm
by iMatt
I have been wrestling with creating a form using the Form Wizard to create a form with price options. However, the submit form seems to not be working. What am I doing wrong?

http://www.poetrycards.me.uk/anniversary.php

Re: Okay, I'm stumped

Posted: Fri Jun 21, 2019 5:14 pm
by Pablo
It looks like you have change the 'action' field. Please do not change this.

Re: Okay, I'm stumped

Posted: Fri Jun 21, 2019 6:21 pm
by iMatt
Okay, a test run does get me into PayPal. However, I am presented with a shopping cart for items such as T-Shirts. How do I get rid of these unwanted entries showing in the first place?

Re: Okay, I'm stumped

Posted: Fri Jun 21, 2019 6:29 pm
by Pablo
You have full control over the properties of the elements. They are standard WWB objects.

Re: Okay, I'm stumped

Posted: Tue Jun 25, 2019 6:22 pm
by iMatt
Okay, I have redone the form. However, it does not seem to be sending info to the URL I need it to.

Re: Okay, I'm stumped

Posted: Tue Jun 25, 2019 7:56 pm
by Pablo
The names of the form fields do not seem to be correct.
You cannot just use random names. They must be valid PayPal variables:
https://developer.paypal.com/docs/class ... variables/

Re: Okay, I'm stumped

Posted: Wed Jun 26, 2019 10:38 am
by BaconFries
Okay, I have redone the form. However, it does not seem to be sending info to the URL I need it to.
Is the url in your first post show the redone form?. Asking as when I visit and I view the source I can see that you have removed important code these are "hidden" inputs which look like the following example.

Code: Select all

<input type="hidden" name="business" value="paypal@your-web-domain.com">

with this and others missing your form will not work.
I would suggest that you start again as it is the easiest way to get you on track. Note you mentioned T-Shirt you dont have to remove the "hidden" input just rename the field to match your needs ie T-Shirt would become Poetry Cards....

Re: Okay, I'm stumped

Posted: Thu Jun 27, 2019 3:21 pm
by BaconFries
If your still stumped by this let me know and I will try to help.