ID number of members

Isn't there a way to add the ID number of members in the admin panel -> members ?

 

 

Quote · 17 Jun 2010

If you examine the member's link, you will see the member ID in the URI. This is the only way I know of that shows this without some form of a modification. I have no idea why it isn't even under "geeky."

BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin
Quote · 17 Jun 2010

Easy to add to the geeky list just by changing the template.

administration\templates\base\mp_members_geeky.html

Add the lines marked in Green to the Template.

<div class="adm-mp-members-geeky">
<table width="100%" class="adm-mp-members-geeky" cellpadding="0" cellspacing="0">
<tr>
<th>&nbsp;</th>
<th>ID</th>
<th><bx_text:_adm_txt_mp_username /></th>
<th><bx_text:_adm_txt_mp_email /></th>
<th><bx_text:_adm_txt_mp_mlevel /></th>
<th><bx_text:_adm_txt_mp_registration /></th>
<th><bx_text:_adm_txt_mp_last_login /></th>               
</tr>
<bx_repeat:items>
<tr>
<td width="30px"><input type="checkbox" class="form_input_checkbox" id="adm-mp-__id__" name="members[]" value="__id__" /></td>
<td width="20px">__id__</td>
<td width="*"><a href="__edit_link__" class="__edit_class__">__username__</a></td>
<td width="25%"><div title="__full_email__">__email__</div></td>
<td width="100px">__ml_name__</td>
<td width="105px">__registration__</td>
<td width="105px">__last_login__</td>                   
</tr>
</bx_repeat:items>
</table>
</div>
__paginate__


There is not much room to work with. But you should not need it as Magnussoft pointed out.

https://www.deanbassett.com
Quote · 17 Jun 2010

I was searching the forum and found a solution provided by modzzz :

 

Here is a simple solution to display the Member ID beside the Nickname in the members section in admin (all three views).

In the following files :

administration/templates/base/mp_members_simple.html
administration/templates/base/mp_members_extended.html
administration/templates/base/mp_members_geeky.html

Find :

__username__

Replace with :

__username__ (__id__)

Quote · 17 Jun 2010

Thanks for quick replies Kiss

Quote · 17 Jun 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.