I have tried:
// edit state, remove 'edit silent' option
if($this->template=='question' && strpos(qa_get_state(),'edit')!==false) {
unset($this->content['form_q_edit']['fields']['silent']);
// remove email notify from q and a
unset($this->content['form_q_edit']['fields']['notify']);
unset($this->content['a_form']['fields']['notify']); // does not work!
}
Using var_dump($this->content['a_form']['fields']['notify']); shows me the content. But the unset() does not work in this case. Strange.