To post the Contact’s Position First and then their Name please do the following:
– Create folder templatesja_polluxhtmlcom_contactcategory
– Copy default.php, default_items.php from componentscom_contactviewscategorytmpl to templatesja_polluxhtmlcom_contactcategory
– Open templatesja_polluxhtmlcom_contactcategorydefault.php and move this code from line 67:
<?php if ( $this->params->get( 'show_position' ) ) : ?>
<td height="20" class="sectiontableheader<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<?php echo JHTML::_('grid.sort', 'Position', 'cd.con_position', $this->lists['order_Dir'], $this->lists['order'] ); ?>
</td>
<?php endif; ?>
to line 64.
– Open templatesja_polluxhtmlcom_contactcategorydefault_items.php and move this code from line 14:
<?php if ( $this->params->get( 'show_position' ) ) : ?>
<td>
<?php echo $this->escape($item->con_position); ?>
</td>
<?php endif; ?>
to line 10.
Hope this helps.