Ho semplicemente modificato l'ordine nel file default.php ... questa la strada da percorrere: Apri il sito tramite fpt, vai su componets-com_joomsport-views-ltable-tmpl-default.php
in questo file troverai la stringa da modificare, ti posto qui la mia, se vuoi fai copia incolla o modifica manualmente, il testo evidenziato e sottolineato e' quello da mettere prima degli altri:
<table id="s_table_<?php echo $zzz?>" class="tblscss" width="100%" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th width="20" class="sort asc" axis="int" id="tblrank_id">
<?php echo $this->bl_lang['BL_TBL_RANK'];?>
</th>
<?php if($lists['emblem_chk'] == 1) { ?>
<th class="bno_sort"></th>
<?php } ?>
<th width="120" class="sort asc" axis="string">
<?php echo $this->bl_lang['BL_TBL_TEAMS'];?>
</th>
<?php if($lists['point_chk'] == 1) { ?>
<th class="sort asc" axis="int"><?php echo $this->bl_lang['BL_TBL_POINTS'];?></th>
<?php } ?>
<?php if($lists['played_chk'] == 1) { ?>
<th class="sort asc" axis="int"><?php echo $this->bl_lang['BL_TBL_PLAYED'];?></th>
<?php } ?>
<?php if($lists['win_chk'] == 1) { ?>
<th class="sort asc" axis="int"><?php echo $this->bl_lang['BL_TBL_WINS'];?></th>
<?php } ?>
<?php if($lists['draw_chk'] == 1) { ?>
<th class="sort asc" axis="int"><?php echo $this->bl_lang['BL_TBL_DRAW'];?></th>
<?php } ?>
<?php if($lists['lost_chk'] == 1) { ?>
<th class="sort asc" axis="int"><?php echo $this->bl_lang['BL_TBL_LOST'];?></th>
<?php } ?>
<?php
if($this->enbl_extra){
?>
<?php if($lists['otwin_chk'] == 1) { ?>
<th class="sort asc" axis="int"><?php echo $this->bl_lang['BL_TBL_EXTRAWIN'];?></th>
<?php } ?>
<?php if($lists['otlost_chk'] == 1) { ?>
<th class="sort asc" axis="int"><?php echo $this->bl_lang['BL_TBL_EXTRALOST'];?></th>
<?php } ?>
<?php
}
?>