Title: Member Number v1.0

Author: John Briggs

Description:
This mod will display a member's reg ID number in member control panel, profiles and threads.

Copyright:  2006 John Briggs. All rights reserved.

Compatability: XMB 1.9.5 Final

Install Note: Before adding this mod to your forum, you should back up all files related to this mod.

License Note: This mod is released under the GPL License. A copy is provided with this software.

Author Note:
You downloaded this hack from XMBMods.com, the #1 source for XMB related downloads.
Please visit http://www.xmbmods.com/ for support.

=======================================================================================================================================
=======
Step 1:
=======

================================================
Go to admin panel -> templates -> member_profile
================================================

==========
Find Code:
==========

<tr>
<td bgcolor="$altbg1" class="tablerow">$lang[textregistered]</td>
<td bgcolor="$altbg2" class="tablerow">$memberinfo[regdate] ($ppd $lang[textmesperday])</td>
</tr>

===============
Add Code Above:
===============

<tr class="tablerow">
<td bgcolor="$altbg1">$lang[memnumber]</td>
<td bgcolor="$altbg2">$memberinfo[uid]</td>
</tr>

=======================================================================================================================================
=======
Step 2:
=======

=================================================
Go to admin panel -> templates -> viewthread_post
=================================================

==========
Find Code:
==========

$lang[textposts] $post[postnum]

===============
Add Code Above:
===============

<br />$lang[memnumber] $post[uid]

=======================================================================================================================================
=======
Step 3:
=======

============================================
Go to admin panel -> templates -> memcp_home
============================================

==========
Find Code:
==========

<td bgcolor="$altbg1" valign="top">$lang[mcpuid]</td>

==================
Replace Code With:
==================

<td bgcolor="$altbg1" valign="top">$lang[memnumber]</td>

=======================================================================================================================================
=======
Step 4:
=======

================================
Edit File: lang/English.lang.php
=================================

================================
Add Code At Very Bottom Of File:
================================

// Member Number Mod Begin
$lang['memnumber'] = "Member No.:";
// Member Number Mod End

=======================================================================================================================================