Resource icon

Add another "notable member" tab

Jake Bunce

Well-known member
Jake Bunce submitted a new resource:

Add another "notable member" tab - For example, to list special usergroups

library/XenForo/ControllerPublic/Member.php

Add the red code (and specify the secondary group id for your vip members):

Rich (BB code):
	protected function _getNotableMembers($type, $limit)
	{
		$userModel = $this->_getUserModel();

		$notableCriteria = array(
			'is_banned' => 0
		);

		if ($type == 'vip')
		{
			$notableCriteria['secondary_group_ids'] = array(3);
		}

		$typeMap = array(
			'messages' => 'message_count',...

Read more about this resource...
 
Back
Top Bottom