1. Edit file qa-theme/<your-theme>/qa-theme.php
2. Add (if they don't exist) or merge (if they already exist) the following functions):
// Removes checkbox from answers
public function a_form($form) {
if ($this->template === 'question') {
unset($form['fields']['notify']);
}
parent::a_form($form);
}
// Removes checkbox from comments
public function c_form($form) {
if ($this->template === 'question') {
unset($form['fields']['notify']);
}
parent::c_form($form);
}
// Removes checkbox from ask form
public function initialize() {
if ($this->template === 'ask') {
unset($this->content['form']['fields']['notify']);
}
parent::initialize();
}