Ciao.
Si è possibile ma devi mettere mano al codice. Per l'esattezza devi editare il file:
components/com_weblinks/models/category.php
alla fine del file e precisamente alla riga 223 trovi il seguente codice:
// We need to get a list of all weblinks in the given category
$query = 'SELECT *' .
' FROM #__weblinks' .
' WHERE catid = '. (int) $this->_id.
' AND published = 1' .
' AND archived = 0'.
' ORDER BY '. $filter_order .' '. $filter_order_dir .', ordering';
return $query;
}
}
che devi modificare in questo modo:
// We need to get a list of all weblinks in the given category
$query = 'SELECT *' .
' FROM #__weblinks' .
' WHERE catid = '. (int) $this->_id.
' AND published = 1' .
' AND archived = 0'.
//' ORDER BY '. $filter_order .' '. $filter_order_dir .', ordering';
' ORDER BY title ASC';
return $query;
}
}
Mi raccomando fai una copia del file category.php prima di apportare le modifiche così se dovesse andare storto qualcosa in un attimo ritorni indietro.