Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
357 views
in Q2A Core by
reopened by

1 Answer

+3 votes
by
selected by
 
Best answer

1. Edit file qa-theme/SnowFlat/qa-theme.php

2. Add (if it doesn't exist) or merge (if it already exists) this function:

public function initialize() {
    parent::initialize();
    if ($this->template === 'user') {
        unset($this->content['form_activity']);
    }
}
...