edit qa-include/qa-theme-base.php
function a_count($post)
{
$this->output(@$post['answers_raw']);
// You can also use $post['answers_raw'] to get a raw integer count of answers
$this->output_split(@$post['answers'], 'qa-a-count', 'SPAN', 'SPAN',
@$post['answer_selected'] ? 'qa-a-count-selected' : null);
}
########################### add (@$post['answers']['suffix'] = '';) :
function a_count($post)
{
@$post['answers']['suffix'] = '';
$this->output(@$post['answers_raw']);
// You can also use $post['answers_raw'] to get a raw integer count of answers
$this->output_split(@$post['answers'], 'qa-a-count', 'SPAN', 'SPAN',
@$post['answer_selected'] ? 'qa-a-count-selected' : null);
}