Add a language bit. Go to ACP->Look&Feel->Manage Languages->*your language*
Click Add String
Application: system
Pack Name: public_global
Key: member_no
Default Text: Member No.:
Click Add This Entry
This will add it back into the profile view.
Go to ACP->Look&Feel->*your skin*->profiles->profileModern
Find:
Add after
This will add it back into the profile card.
Go to ACP->Look&Feel->*your skin*->profiles->showCard
Find:
Add after
This will add it back into the topic view profile.
Go to ACP->Look&Feel->*your skin*->Global Templaets->userinfoPane
Find:
Add after
Click Add String
Application: system
Pack Name: public_global
Key: member_no
Default Text: Member No.:
Click Add This Entry
This will add it back into the profile view.
Go to ACP->Look&Feel->*your skin*->profiles->profileModern
Find:
<dt>{$this->lang->words['m_group']}</dt>
<dd>{$member['g_title']}</dd>
Add after
<dt>{$this->lang->words['member_no']}</dt>
<dd>{$member['member_id']}</dd>
SaveThis will add it back into the profile card.
Go to ACP->Look&Feel->*your skin*->profiles->showCard
Find:
<dt>{$this->lang->words['m_group']}</dt>
<dd>{$member['g_title']}</dd>
Add after
<dt>{$this->lang->words['member_no']}</dt>
<dd>{$member['member_id']}</dd>
SaveThis will add it back into the topic view profile.
Go to ACP->Look&Feel->*your skin*->Global Templaets->userinfoPane
Find:
<li>
<span class='ft'>{$this->lang->words['m_group']}</span>
<span class='fc'>{$author['_group_formatted']}</span>
</li>
Add after
<li>
<span class='ft'>{$this->lang->words['member_no']}</span>
<span class='fc'>{$author['member_id']}</span>
</li>
Save













