Question: How can I add a Sort by Last Visit Option in the member list?
Answer: You’ll need to make changes to the following file:
system/modules/member/mod.member.php
Remember to make a backup copy of the file before adding any changes.
Look for the block of text arould line 1835
// ----------------------------------------
// Create the "Order By" menu
// ----------------------------------------
...
Right before this line:
$this->content = str_replace(LD.'order_by_options'.RD, $menu, $this->content);
Add:
$selected = ($order_by == 'last_visit') ? " selected='selected' " : '';
$menu .= "<option value='last_visit'".$selected.">".$LANG->line('last_visit')."</option>\n";
Save the file, and open your Member List. You’ll now be allowed to search by Last Visit. I also suggest using in descending order.
I can do this by hand, but I’d rather it be added to the code base.
