If you're not afraid changing the core-files:
-
open qa-page-user.php
-
search for foreach ($userfields as $userfield)
-
add "if ($valuehtml) {...}" around the array-constructor for $qa_content:
if($valuehtml){
$qa_content['form']['fields'][$userfield['title']]=array(
'type' => $fieldsediting ? 'text' : 'static',
'label' => qa_html($label),
'tags' => ' NAME="'.$fieldname.'" ',
'value' => $valuehtml,
'error' => qa_html(@$errors[$fieldname]),
'rows' => ($userfield['flags'] & QA_FIELD_FLAGS_MULTI_LINE) ? 8 : null,
);
}
that's it :)
[refering to comment: changed from $value to $valuehtml]