I need to edit qa-theme-base.php to get the points programmatically within function function post_meta_who($post, $class).
I tried to change line 1577:
from: $this->output('<SPAN CLASS="'.$class.'-who-title">'.$post['who']['title'].'</SPAN>');
to: $this->output('<SPAN CLASS="'.$class.'-who-title">'.$post['who']['points'].'</SPAN>');
which does not output the points but an error.
Also $post[''points'] throws an error: PHP Notice: Undefined index: points
PS: I need to get the points as int to convert them.