Hi Rob,
Thanks for that - that will solve the problem of the button when i first figure out, how to disable the Next buttom, and make the quiz to automatically jump to next question after submit an answer. 🙂
The automatic jump post that was referenced in your original email works fine for me. I just created the default quiz form and followed the directions in the post and it automatically goes to the next question. https://connect.formidableforms.com/question/category/general-questions/automatically-jump-to-forms-next-step-when-selecting-radio-button-option/
I suggest posting your customized HTML code if you can't figure out why it's not working and clearly explain what does or doesn't happen when you try.
Hmm... strange? Mayby i dont add the HTML the right place? Is it in "After" or in "Submit" the code [input class="frm_button_submit"] goes?
Sorry for my poor english - im from Denmark 🙂
You need to add it to the radio button's HTML. For example, if you have a question, "Which color?" You'll have a section on the Customize HTML tab labeled as "Which color?" and inside that box you'll find [input] and you want to change it to [input class="frm_button_submit"]
Hi guys, Thanks for your help.
I managed to get what i wanted by:
- Turning to Conversational form
- Skip the START page with a php snippet in WPCode:
add_filter('frm_filter_final_form', 'skip_start_page', 15); function skip_start_page( $form ) { $form = str_replace( 'class="frm_active_chat_field frm_chat_start_page"', 'style="display: none;" class="frm_active_chat_field frm_chat_start_page"', $form ); return $form; }
Please login or Register to submit your answer