Events Made Easy › Forums › How do I … › Fix my field codes problem
Tagged: Form Fields
- This topic has 1 reply, 2 voices, and was last updated 9 years, 8 months ago by Franky.
-
AuthorPosts
-
Tue 3 Mar 2015 at 16:39 #53609AnonymousInactive
Hi Franky,
For the life of me, I can’t figure out why my form isn’t appearing properly at http://boterajordan.org/conference/8/symposium-on-restoring-degraded-ecosystems-regional-and-international-perspectives/
The Organization Name is right. Why does it work, and the other fields I created don’t? I’ve been stuck here for hours, trying different variations.
Please take a look. Much appreciated.
<table class=’eme-rsvp-form’>
<tr><th scope=’row’>Name*:</th><td>#_NAME</td></tr>
<tr><th scope=’row’>Email*:</th><td>#_EMAIL</td></tr>
<tr><th scope=’row’>Occupation*:</th><td>#REQ_OCCUPATION1</td></tr>
<tr><th scope=’row’>Job Title*:</th><td>#REQ_JOB TITLE2</td></tr>
<tr><th scope=’row’>Organization Name*:</th><td>#REQ_NAME3</td></tr>
<tr><th scope=’row’>Specific Interest *:</th><td>#REQ_SPECIFIC INTEREST9</td></tr>
<tr><th scope=’row’>Phone number:</th><td>#_PHONE</td></tr>
<tr><th scope=’row’>Comment:</th><td>#_COMMENT</td></tr>
<tr><th scope=’row’>Seats*:</th><td>#_SEATS</td></tr>#_CAPTCHAHTML{<tr><th scope=’row’>Please fill in the code displayed here:</th><td>#_CAPTCHA</td></tr>}
</table>
#_SUBMITAlso, I’m not seeing the Captcha code.
Thanks very much for your help!
Tue 3 Mar 2015 at 16:55 #53610FrankyKeymasterDon’t use the name of the fields, those are strings EME doesn’t know anything about.
Use this:
#REQ_FIELD{1} (to show the field you defined)
#_FIELDNAME{1} (to show the name of the field you defined:<table class='eme-rsvp-form'> <tr><th scope='row'>Name*:</th><td>#_NAME</td></tr> <tr><th scope='row'>Email*:</th><td>#_EMAIL</td></tr> <tr><th scope='row'>#_FIELDNAME{1}*:</th><td>#REQ_FIELD{1}</td></tr> <tr><th scope='row'>#_FIELDNAME{2}*:</th><td>#REQ_FIELD{2}</td></tr> <tr><th scope='row'>#_FIELDNAME{3} *:</th><td>#REQ_FIELD{3}</td></tr> <tr><th scope='row'>#_FIELDNAME{9} *:</th><td>#REQ_FIELD{9}</td></tr> <tr><th scope='row'>Phone number:</th><td>#_PHONE</td></tr> <tr><th scope='row'>Comment:</th><td>#_COMMENT</td></tr> <tr><th scope='row'>Seats*:</th><td>#_SEATS</td></tr> #_CAPTCHAHTML{<tr><th scope='row'>Please fill in the code displayed here:</th><td>#_CAPTCHA</td></tr>} </table> #_SUBMIT
Of course, if you don’t like the output of FIELDNAME, you can just use your own text there too …
Concerning the captcha: did you activate the use of the captcha in the settings? -
AuthorPosts
- The forum ‘How do I …’ is closed to new topics and replies.