Managed to solve this. I added
function logged_in() // adds points count after logged in username
{
qa_html_theme_base::logged_in();
if (qa_is_logged_in()) {
$userpoints=qa_get_logged_in_points();
$pointshtml=($userpoints==1)
? qa_lang_html_sub('main/1_point', '1', '1')
: qa_lang_html_sub('main/x_points', qa_html(number_format($userpoints)));
$this->output(
'<SPAN CLASS="qa-logged-in-points">',
'('.$pointshtml.')',
'</SPAN>'
);
}
}
to qa-theme.php and .qa-logged-in-points {color:#FFFFFF;font;size:13px;} to qa-styles.css and now it is visible