MyBB Community Forums

Full Version: How to order users by UID on showteam page?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, so I want to know whether it is possible or not to order users by their userid on showteam.php page, it currently lists users alphabetically, but I want it to change it so that it lists them by their uid instead of usernames. 

I don't mean group order, I mean order of users within a group, for example uid=1 appearing at the top of their group list regardless of whatever letter his username starts with and so on.

Thanks for reading.
Change line 51 to
ORDER BY u.uid ASC

And this which is on line 72
array('order_by' => 'username'

To
array('order_by' => 'uid'
(2015-10-15, 12:02 PM)dragonexpert Wrote: [ -> ]Change line 51 to
ORDER BY u.uid ASC

And this which is on line 72
array('order_by' => 'username'

To
array('order_by' => 'uid'

It worked. Thanks a lot.

This thread can be closed now.