Title: Member Number v1.0

Author: John Briggs

Description:
This modification will display a member's user ID (uid) number in member control panels, profiles and threads.

Copyright:  2006 John Briggs. All rights reserved.

Compatability: XMB 1.9.8 SP3/SP4

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

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

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

=======================================================================================================================================
=======
Step 1:
=======
==========================
Go To Admin Panel -> Templates
==========================
=======================
Edit Template: member_profile
=======================

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

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

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

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

=======================================================================================================================================
=======
Step 2:
=======
==========================
Go To Admin Panel -> Templates
==========================
========================
Edit Template: viewthread_post
========================
==========
Find Code:
==========

$lang[textposts] $post[postnum]

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

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

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

==========================
Go To Admin Panel -> Templates
==========================
======================
Edit Template: memcp_home
======================
==========
Find Code:
==========

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

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

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

=======================================================================================================================================
=======
Step 4:
=======
=======================
Edit File: lang/English.lang.php
=======================
==================================
Add Code At Very Bottom Of File Above ?>
==================================

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

=======================================================================================================================================
Enjoy!