I just installed this awesome mod on VB 3.7.2 - it works great!
However, there is a small bug that appears if your testing it with the default/ original form. If you set $answerall = "1"; then the mod will keep on saying that you need to answer all questions even though you did and double checked it. The problem is in the condition for $answerall. Find:
Replace the if condition
inside that if statement with (note that I also added the condition to check for $dropdownanswer1):
Quote:
if ($normalanswer1 == '' OR ($radioanswer1 == '' AND $radioanswer2 == '' AND $radioanswer3 == '') OR $answer1 == '' OR $answer2 == '' OR $answer3 == '' OR $dropdownanswer1 == '' OR !($checkboxchoice1_1 OR $checkboxchoice1_2 OR $checkboxchoice1_3) OR $longanswer1 == '')
|
Now your form submissions should work when $answerall is enabled.
Note that if you add more variables, then you need to check for them inside the above if condition. Also, if you want some variables to be optional, then you can omit them from that statement.