Events Made Easy Forums How do I … Fix my field codes problem

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #53609
    Anonymous
    Inactive

    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>
    #_SUBMIT

    Also, I’m not seeing the Captcha code.

    Thanks very much for your help!

    #53610
    Franky
    Keymaster

    Don’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?

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘How do I …’ is closed to new topics and replies.
Scroll to Top