You can, but only modifying core script addon_members2.php directly... First modify mySQL request which starts with if($row=db_simpleSelect adding the number of posts field, like
"{$dbUserId}, {$dbUserSheme['username'][1]}, {$dbUserSheme['user_email'] [1]}, {$dbUserSheme['user_icq'][1]}, {$dbUserSheme['user_website'][1]}, {$dbUserSheme['user_from'][1]}, {$dbUserSheme['user_viewemail'][1]}, {$dbUserDate}, {$dbUserSheme['num_posts'][1]}"
then edit templates/addon_members.html and paste the HTML code for the new table row indicating heading:
<td class="caption4" style="width:20%"> <strong><a href="https://www.minibb.com/forums/{$indexphp}action=members&morder=num_posts&memberSearch= {$memberSearch}&memberSearchVal={$memberSearchVal}&page=2"> {$l_usrInfo[11]}</a></strong></td>
Finally, edit templates/addon_members_cell.html and paste HTML for the table's row as well:
<td class="caption1">{$row[8]}</td>
I've tested it on my local system and it should work. |