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(); }
Admin,posting,to remove a tick
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.