It is not working, I don't understand the structure yet :(
For now, I add an input field abusing the "function qa_set_up_name_field" from qa-app-format.php:
// added anti spam field Honeypot
$fields['extra']=array(
// 'label' => '',
'tags' => 'name="checkme"',
'value' => '',
'type' => 'text',
'id' => 'botcheck',
);
And in the filter module / plugin I want to read and return it like:
function filter_question(&$question, &$errors, $oldquestion)
{
$errors['title'] = '# '.$question['extra'];
}
which is not working, disappointingly....
$errors['title'] = '# '.$question['checkme']; does not work either :/