Jump to content


Tutorial info Visit support topic

  • Added on: Feb 15 2012 11:02 AM
  • Views: 1390
 


Member number in topic view

A quick skin edit to restore the member number to topic view

Posted by AndyF on Feb 15 2012 11:02 AM
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...
		<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:

Posted Image

Powered by Tutorials 1.5.1 © 2013, by Michael McCune