Quote:
Originally Posted by farplane dragon
Well, the good new is that it's working, however, I'm having 2 main problems. Setting to where they have to answer all questions causes it to say, "X, you have to answer all questions" even if you have.
Also, I have it set to create a new thread, but the answers are partly out of order compared to the form, any idea to how to fix that?
Also, is there a way to make it so the questions in that topic appear bold, so they stand out from the answers?
|
I had the same problem when I first started it too. You have to go lower down in the form area and edit this section.
Code:
if ($answerall == "1")
{
if ($answer1 == '' OR $answer2 == '' OR $answer4 == '' OR $dropdownanswer1 == '' OR dropdownanswer3 == '' OR $dropdownanswer4 == '' OR $longanswer1 == '')
{
$errormessage = "$bbuserinfo[username], you need to answer every question!";
eval('print_output("' . fetch_template('STANDARD_ERROR') . '");');
exit();
Make sure that all your questions are in there or ones you're not using are removed.