Add to your plugin or advanced theme the following (credits to Scott, user activity plugin):
function post_meta($post, $class, $prefix=null, $separator='<br/>')
{
// default method call
qa_html_theme_base::post_meta($post, $class, $prefix=null, $separator='<br/>');
if($this->template=='user-answers') {
$answerpreview = qa_db_read_one_value( qa_db_query_sub('SELECT content FROM `^posts`
WHERE `parentid` = #
;', $post['raw']['postid']), true );
// to avoid ugly content, convert answer to HTML then strip the tags and remove any URLs
// $answerpreview = qa_viewer_html($answerpreview, 'html');
$answerpreview = strip_tags( $answerpreview);
$answerpreview = preg_replace('#\shttp://[^\s]+#', '', $answerpreview);
$answerpreview = qa_substr($answerpreview, 0, 160);
if($answerpreview == 160) {
$answerpreview .= '…';
}
$this->output('
<div class="qa-a-snippet" style="margin-top: 2px;color: #555753;line-height: 115%;display:block;">
'.$answerpreview.'
</div>
');
}
}