Just implement a layer by forllowing he tutorial of q2a and change the code accordingly
the below code should do the job
class qa_html_theme_layer extends qa_html_theme_base {
function doctype() {
if ($this->template=='register' &&
isset($this->content['form']['hidden']['doregister']) &&
!!$this->content['form']['hidden']['doregister']) {
unset($this->content['form']);
}
}
}
Hope it helps