Hello,
is it possible to change the position of the human test?
I use it together with anonymous posting and posting meta and want the human test to appear right after the name.
For those who have still spam registrations by using this plugin, just change the text in for example change "+" to "plus" or use another phrase without the "+". It should already help.
function human_test_question() {
$compare=$_SESSION['HUMAN_TEST']; // grab correct answer from pre-stored session data
$xht=rand(2,$compare-1);
$yht=$compare-$xht;
$question=human_test_encode(__("How much does")." ".$xht." + ");
$question.="<span style='display:none;'>".human_test_encode(rand(0,9))."</span>";
$question.="<span style=''>".human_test_encode($yht." = ")."</span>";
$question.="<span style='display:none;'>".human_test_encode(rand(0,9))."</span>";
return $question;
}