1. Open /qa-theme/<your-selected-theme>/qa-theme.php
2. Look for function title()
3. If it is not there then just add this code to the file:
public function title() {
$q_view = isset($this->content['q_view']) ? $this->content['q_view'] : null;
$url = isset($q_view['url']) ? $q_view['url'] : false;
if (isset($this->content['title'])) {
$this->output(
$url ? '<a class="q-title-link" href="'.$url.'">' : '',
$this->content['title'],
$url ? '</a>' : ''
);
}
}
4. If it is there then you can try replacing it with the whole function from #3
5. If it is there and #4 didn't work you will have to merge them yourself