Ok, now I have understood, try with these steps:
- Copy file from /components/com_jsn/views/list/tmpl/table_user.php at /templates/your-theme-folder/html/com_jsn/list/table_user.php
- Edit new file and replace all occurrences of
<?php echo $this->user->getField($field,true); ?>
with this code
<?php if( is_array( $this->user->getValue( $field ) ) ) { echo '<ul><li>'.implode( '</li><li>',$this->user->getValue( $field ) ).'</li></ul>'; } else { echo $this->user->getField( $field, true ); } ?>
Basically if the raw value of the field is an array then it will be displayed like HTML list.