php - Gravity forms - save and continue Drop down custom code -
so ive built these complex gravity forms, client requires save , continue feature form works treat, want know if possible have drop down menu email address's in - have created reason cant submit, ive looked @ few hours now, maybe worth getting else have at...
if has thoughts on how solve please feel free let me know , gratefully recieved:
here original area of code submits save , continue:
$resume_form = "<div class='form_saved_message_emailform'> <form action='{$action}' method='post' id='gform_{$form_id}' {$target}> {$ajax_fields} <input type='{$html_input_type}' name='gform_resume_email' value='{$email_esc}'/> <input type='hidden' name='gform_resume_token' value='{$resume_token}' /> <input type='hidden' name='gform_send_resume_link' value='{$form_id}' /> <input type='submit' name='gform_send_resume_link_button' id='gform_send_resume_link_button_{$form_id}' value='{$resume_submit_button_text}' {$ajax_submit}/> {$validation_message} {$nonce_input} </form> </div>"; i have edited code allow dropdown menu appear correct information (although ive replaced x's due sensitive data)
$resume_form = "<div class='form_saved_message_emailform'> <form action='{$action}' method='post' id='gform_{$form_id}' {$target}> <select name='employee'> <option value='x.co.uk'>x</option> <option value='x.co.uk'>x</option> <option value='x.co.uk' >x</option> <option value='x.co.uk'>x</option> <option value='x.co.uk'>x</option> <option value='x.co.uk'>x</option> <option value='x.co.uk’>x</option> <option value='x.co.uk’>x</option> <option value='x.co.uk'>x</option> </select> <input type='hidden' name='gform_resume_token' value='{$resume_token}' /> <input type='hidden' name='gform_send_resume_link' value='{$form_id}' /> <input type='submit' name='gform_send_resume_link_button' id='gform_send_resume_link_button_{$form_id}' value='{$resume_submit_button_text}' {$ajax_submit}/> {$validation_message} {$nonce_input} </form> </div>"; perhaps im going wrong way.... feel free call me out ;d
Comments
Post a Comment