By William Matson on Wednesday, 25 June 2014
Posted in General Issues
Replies 5
Likes 0
Views 755
Votes 0
How is the order of items that appear in the "Select field" dropdown box determined? Can this order be modified?
Hello William,

They are actually ordered by the ordering on the fields that you set in the profile type.
·
Wednesday, 25 June 2014 13:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mark --

I do not see how to set the ordering in the profile type. Please explain. Thanks.
·
Wednesday, 25 June 2014 14:22
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello William,

When you edit a profile type, click on "Custom Fields". Then, drag and drop the fields to re-order them
·
Wednesday, 25 June 2014 15:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mark --

I do not think that this is correct. I have registration information arranged on 5 different tabs. The first tab includes the information required for initial registration. The additional tabs have optional fields that are completed after the new user is granted membership. As an example, I have "Name" on the first tab (required for initial registration). I have "Opportunities" (an optional field) on the fifth tab. However, on the "Select field" dropdown box, the "Opportunities" selection appears in the top position and the "Name" field appears in the third position. The other selections (total of 7), also appear in random order that is different from the tab order on which they appear. Please advise. Thanks.
·
Thursday, 26 June 2014 01:59
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi William,

I am sorry for the delay of this reply.

Regarding your issue, can you edit the file 'JOOMLA/administrator/components/com_easysocial/includes/advancedsearch/helpers/user.php' and go to line 297:

$query .= ' order by a.`ordering`';


and replace the above code with following:

$query .= ' order by fs.`sequence`, a.`ordering`';


Let me know if the above fix your fields ordering issue in advanced search page.

Hope this help and have a nice day
Sam
·
Thursday, 26 June 2014 13:22
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post