Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt November 11, 2024
Axel Wers Posted April 20, 2012 Posted April 20, 2012 http://community.invisionpower.com/members/ I think default sorting is little useless and messed up. Why we should see so many # names? Default sorting by Join date would be more useful.
Feld0 Posted April 20, 2012 Posted April 20, 2012 +1. I would like this change, or at least an option to choose the sort order we want for our member list.
Jiall Posted April 21, 2012 Posted April 21, 2012 +1. I would like this change, or at least an option to choose the sort order we want for our member list.
Krzysztof Szyszkowski Posted May 14, 2013 Posted May 14, 2013 I wonder why still there's no SO simple and SO important feature
ArielTrafford Posted May 20, 2013 Posted May 20, 2013 Either by join date or by post count. That would be good so that when somone clicks on the user list the first users to show up will be the most active ones.
AlexWebsites Posted July 21, 2013 Posted July 21, 2013 Has anyone found how to default by post count?
Adriano Faria Posted July 21, 2013 Posted July 21, 2013 Open adminapplicationsmembersmodules_publiclistview.php and find: $this->sort_key = !empty($this->request['sort_key']) ? $this->request['sort_key'] : 'members_display_name'; $this->sort_order = !empty($this->request['sort_order']) ? $this->request['sort_order'] : 'asc'; To order by post count, change to: $this->sort_key = !empty($this->request['sort_key']) ? $this->request['sort_key'] : 'posts'; $this->sort_order = !empty($this->request['sort_order']) ? $this->request['sort_order'] : 'desc'; To order by joined date, change to: $this->sort_key = !empty($this->request['sort_key']) ? $this->request['sort_key'] : 'joined'; $this->sort_order = !empty($this->request['sort_order']) ? $this->request['sort_order'] : 'desc';
Recommended Posts
Archived
This topic is now archived and is closed to further replies.