PDA

View Full Version : Sorting the teams in menu ' add matches ' alphabetically ?



dneven
27-11-2016, 06:32 PM
Is it possible when adding matches , the teams to be shown in alphabetical order not by id ?

kostas
28-11-2016, 09:30 AM
Hello

you can achieve the result you want by altering the code in file <joomla directory>/administrator/components/com_multileague/views/addgames/tmpl/default.php

around line 73 you should be able to find the following code


$query="SELECT id,team_name FROM `#__multileague_team` WHERE status=1";


change it to



$query="SELECT id,team_name FROM `#__multileague_team` WHERE `status`=1 ORDER BY team_name";