• Resolved innerspec

    (@innerspec)


    THERE WAS AN ERROR TRYING TO SEND YOUR MESSAGE. PLEASE TRY AGAIN LATER.

    This is the code below. The conditional parts work great while filling out the form. But when trying to submit, the error above is presented.

    Which type of training are you interested in?
    [select* typeoftraining include_blank “EMAT Level 1” “EMAT Level 2” “Other”]<p>

    [group basic-fields]

    <fieldset>
    <legend>Basic Fields</legend>

    </fieldset>

    Which training session are you interested in?
    [select* menu-223 include_blank “September 19 – 21, 2017” “November 14 – 16, 2017”]<p>

    *[text* your-name placeholder “Your Name”] </p>

    <p>*[email* your-email placeholder “Your Email”] </p>

    <p>[text* your-company placeholder “Organization”] </p>

    <p>[text subject placeholder "Position"] </p>

    <p>[text* your-company placeholder “Country”] </p>

    <p>[text subject placeholder "State"] </p>

    <p>[text subject placeholder "Office Phone"] </p>

    <p>[text subject placeholder "Cell Phone"] </p>

    <p>[text subject placeholder "Number of Attendees"] </p>

    <p>[textarea subject placeholder “Reason for Training”] </p>

    [/group]

    [group basic2-fields]

    <fieldset>
    <legend>Basic2 Fields</legend>

    </fieldset>

    Get in touch with a training consultant.

    *[text* your-name placeholder “Your Name”] </p>

    <p>*[email* your-email placeholder “Your Email”] </p>

    <p>[text* your-company placeholder “Organization”] </p>

    <p>[text subject placeholder "Position"] </p>

    <p>[text* your-company placeholder “Country”] </p>

    <p>[text subject placeholder "State"] </p>

    <p>[text subject placeholder "Office Phone"] </p>

    <p>[text subject placeholder "Cell Phone"] </p>

    <p>[textarea subject placeholder “Reason for Training”] </p>

    [/group]

    [group basic3-fields]

    <fieldset>
    <legend>Basic3 Fields</legend>

    </fieldset>

    <p>[textarea subject placeholder “How else can we help you?”] </p>

    *[text* your-name placeholder “Your Name”] </p>

    <p>*[email* your-email placeholder “Your Email”] </p>

    <p>[text* your-company placeholder “Organization”] </p>

    <p>[text subject placeholder "Position"] </p>

    <p>[text* your-company placeholder “Country”] </p>

    <p>[text subject placeholder "State"] </p>

    <p>[text subject placeholder "Office Phone"] </p>

    <p>[text subject placeholder "Cell Phone"] </p>

    [/group]

    <p>[submit “Submit Form”]</p>

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Jules Colle

    (@jules-colle)

    You need to make sure all field names are unique.

    Quote from FAQ:

    All field names should be unique

    Even though your fields might never show up at the same time, it is still important to realize that WPCF7CF will not remove the fields, it merely hides them. So all fields will be submitted when the form is sent. Because of this no two fields can have the same name.
    Incorrect form (2 input elements having the same name “a”):

    [group group-1][select a "1" "2" "3"][/group]
    [group group-2][select a "1" "2" "3"][/group]

    Correct form (all groups and fields have unique names):

    [group group-1][select a "1" "2" "3"][/group]
    [group group-2][select b "1" "2" "3"][/group]
    Thread Starter innerspec

    (@innerspec)

    Alright. I fixed that issue. There is still a red box error when trying to submit the form.

    FORM CODE BELOW:

    Which type of training are you interested in?
    [select* typeoftraining include_blank “EMAT Level 1” “EMAT Level 2” “Other”]<p>

    [group basic-fields]

    <fieldset>
    <legend>Basic Fields</legend>

    </fieldset>

    [text your-name placeholder "Your Name"] </p>

    <p>[email your-email placeholder “Your Email”] </p>

    <p>[text your-company placeholder "Organization"] </p>

    <p>[text subject placeholder "Position"] </p>

    <p>[text your-company placeholder "Country"] </p>

    <p>[text subject placeholder "State"] </p>

    <p>[text subject placeholder "Office Phone"] </p>

    <p>[text subject placeholder "Cell Phone"] </p>

    <p>[text subject placeholder "Number of Attendees"] </p>

    <p>[textarea subject placeholder “Reason for Training”] </p>

    [/group]

    [group basic4-fields]

    <fieldset>
    <legend>Basic4 Fields</legend>

    </fieldset>

    Which training session are you interested in?
    [select menu-223 include_blank “September 19 – 21, 2017” “November 14 – 16, 2017”]<p>

    [/group]

    [group basic2-fields]

    <fieldset>
    <legend>Basic2 Fields</legend>

    </fieldset>

    Get in touch with a training consultant.

    [/group]

    [group basic3-fields]

    <fieldset>
    <legend>Basic3 Fields</legend>

    </fieldset>

    <p>[textarea subject placeholder “How else can we help you?”] </p>

    [/group]

    <p>[submit “Submit Form”]</p>

    Thread Starter innerspec

    (@innerspec)

    The form still will not submit emails.

    https://www.farfieldndt.com/training-signup-form/

    Here is the link.

    Plugin Author Jules Colle

    (@jules-colle)

    you have numerous fields all named “subject”.. Please rename all of them so they are unique.

    For example: remame this

    <p>[text subject placeholder “State”] </p>
    <p>[text subject placeholder “Office Phone”] </p>
    <p>[text subject placeholder “Cell Phone”] </p>

    to this:

    <p>[text state placeholder “State”] </p>
    <p>[text office-phone placeholder “Office Phone”] </p>
    <p>[text cell-phone placeholder “Cell Phone”] </p>
    Thread Starter innerspec

    (@innerspec)

    Thanks for the fast response!

    I have updated the names of the fields.

    Still having the same error.

    CODE BELOW:

    Which type of training are you interested in?
    [select* typeoftraining include_blank “EMAT Level 1” “EMAT Level 2” “Other”]<p>

    [group basic-fields]

    <fieldset>
    <legend>Basic Fields</legend>

    </fieldset>

    [text your-name placeholder "Your Name"] </p>

    <p>[email your-email placeholder “Your Email”] </p>

    <p>[text your-company placeholder "Organization"] </p>

    <p>[text positionsubject placeholder "Position"] </p>

    <p>[text country placeholder "Country"] </p>

    <p>[text state placeholder "State"] </p>

    <p>[text office-phone placeholder "Office Phone"] </p>

    <p>[text cellphone placeholder "Cell Phone"] </p>

    <p>[text number-of-attendees placeholder "Number of Attendees"] </p>

    <p>[textarea reason placeholder “Reason for Training”] </p>

    [/group]

    [group basic4-fields]

    <fieldset>
    <legend>Basic4 Fields</legend>

    </fieldset>

    Which training session are you interested in?
    [select menu-223 include_blank “September 19 – 21, 2017” “November 14 – 16, 2017”]<p>

    [/group]

    [group basic2-fields]

    <fieldset>
    <legend>Basic2 Fields</legend>

    </fieldset>

    Get in touch with a training consultant.

    [/group]

    [group basic3-fields]

    <fieldset>
    <legend>Basic3 Fields</legend>

    </fieldset>

    <p>[textarea how-else placeholder “How else can we help you?”] </p>

    [/group]

    <p>[submit “Submit Form”]</p>

    Thread Starter innerspec

    (@innerspec)

    JULES,

    Any other ideas of what the problem could be with this code??

    Really need to get this form working today.

    Plugin Author Jules Colle

    (@jules-colle)

    can you share the link again? https://www.farfieldndt.com/training-signup-form/ seems to be working fine. But there are no conditional fields here.

    Thread Starter innerspec

    (@innerspec)

    The reason it is working, is because I have used a new plugin. Had to find one that worked.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘THERE WAS AN ERROR TRYING TO SEND YOUR MESSAGE. PLEASE TRY AGAIN LATER.’ is closed to new replies.