Here's a quick article on how to restore the Member Number to topic view. 
ACP > Look / Feel > (choose skin) > Manage Templates / CSS > Global Templates > UserInfoPane.
Find...
Add this line just before the final </ul> tag:
You should now hopefully have something like this:
Save.
Quick pic:
ACP > Look / Feel > (choose skin) > Manage Templates / CSS > Global Templates > UserInfoPane.
Find...
<li class='post_count desc lighter'>
{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']}
</li>
</if>
</ul>Add this line just before the final </ul> tag:
<span class='group_title'>Member: </span> <span class='post_count desc lighter'>{$author['member_id']}</span>You should now hopefully have something like this:
<li class='post_count desc lighter'>
{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']}
</li>
</if>
<span class='group_title'>Member Number:</span> <span class='post_count desc lighter'>{$author['member_id']}</span>
</ul>Save.
Quick pic:
- snookputt likes this











