Hi,
unfortunately this is not possible from menu item options.
To do this you can use Joomla template override feature:
- copy files table.php and table_user.php from /components/com_jsn/views/list/tmpl/ to /templates/your-theme-folder/html/com_jsn/list/
- open new file table.php and add new columns header after line 106 like:
if($this->params->def('col5_enable', 0)) echo('<th>'.JText::_($this->params->def('col5_header', '')).'</th>');
if($this->params->def('col6_enable', 0)) echo('<th>'.JText::_($this->params->def('col6_header', '')).'</th>');
echo('<th>Column 7 title</th>');
echo('<th>Column 8 title</th>');
- open new file table_user.php and add the new columns data after line 136 like:
<!-- column 7 -->
<td>
<div>
<?php echo $this->user->getField('ALIAS_OF_THE_FIELD_TO_SHOW',true); ?>
</div>
</td>
<!-- column 8 -->
<td>
<div>
<?php echo $this->user->getField('ALIAS_OF_THE_FIELD_TO_SHOW',true); ?>
</div>
</td>
Something like this require a bit of HTML and PHP knowledges. We think that 6 columns are enough (to not break responsive views) however we always keep in mind the needs of our customers, how many columns do you need?