My form doesn't submit all fields that I have. It submits the first two fields and the rest is empty, like it looks below:
*Name: test
*E-mail: [email]test@yahoo.com[/email]
*Phone:
Date of Move:
Address of the pickup location:
Address of delivery location:
Stairs at Pickup Location:
Elevator at Pickup Location:
Stairs at Delivery Location:
Elevator at Delivery Location:
Type of Piano:
Comments / Questions:
I compared the working fields with none working ones but didn't see any difference.
Here is the e-mail template:
*Name: {name}
*E-mail: {email}
*Phone: {Phone number}
Date of Move: {Date of Move}
Address of the pickup location: {Address of the pickup location}
Address of delivery location: {Address of delivery location}
Stairs at Pickup Location: {Stairs at Pickup Location:}
Elevator at Pickup Location: {Elevator at Pickup Location}
Stairs at Delivery Location: {Stairs at Delivery Location:}
Elevator at Delivery Location: {Elevator at Delivery Location:}
Type of Piano: {Type of Piano}
Comments / Questions:
{Comments / Questions:}
I created the form using "Form Wizard". This is the latest version of ChronoForm.
This is the debug result:
1. Form passed first SPAM check OK
2. Form passed the submissions limit (if enabled) OK
3. Form passed the Image verification (if enabled) OK
4. Form passed the server side validation (if enabled) OK
5. $_POST Array: Array ( [name] => test [email] => test [Phonenumber] => test [DateofMove] => test [Addressofthepickuplocation] => test [Addressofdeliverylocation] => test [StairsatPickupLocation] => Yes [ElevatoratPickupLocation] => Yes [StairsatDeliveryLocation] => Yes [ElevatoratDeliveryLocation] => No [TypeofPiano] => Player 7' Grand (over 6'6'' to 7'6'') [CommentsQuestions] => test [button_26] => Submit [e1ed1cba0003c302dd92b4b8df0a0fe6] => 1 )
6. $_FILES Array: Array ( )
7. Form passed the plugins step (if enabled) OK
8. An email has been SENT successfully from (Admin)info@test.com to [email]info@test.com[/email]
9. Debug End
Thanks in advance.