Memberslist - sorting options

wii

Active member
How can I change the URL to the memberslist so that it sorts with the highest posters first?

In vBulletin it's like this:
/memberlist.php?order=DESC&sort=posts&pp=15

Can I do something similar in XenForo?

Thanks
 
how can you hide the memberlist?

You can remove it from the templates:

Admin CP -> Appearance -> Templates -> navigation

Find and remove this block of code:

Code:
		<!-- members -->
		<xen:if is="{$tabs.members}">
			<li class="navTab members {xen:if $tabs.members.selected, 'selected', 'Popup PopupControl PopupClosed'}">
			
				<a href="{$tabs.members.href}" class="navLink">{$tabs.members.title}</a>
				<a href="{$tabs.members.href}" class="SplitCtrl" rel="Menu"></a>
				
				<div class="{xen:if {$tabs.members.selected}, 'tabLinks', 'Menu JsOnly tabMenu'}">
					<div class="primaryContent menuHeader">
						<h3>{$tabs.members.title}</h3>
						<div class="muted">{xen:phrase quick_links}</div>
					</div>
					<ul class="secondaryContent blockLinksList">
						<li><a href="{xen:link members}">{xen:phrase registered_members}</a></li>
						<li><a href="{xen:link online}">{xen:phrase current_visitors}</a></li>
						<li><a href="{xen:link recent-activity}">{xen:phrase recent_activity}</a></li>
					</ul>
				</div>
			</li>
		</xen:if>
 
its not something i can turn off for now in the admincp, then turn on once we get more members?

If there is a setting for this then I don't see it. But it's just as easy to edit the template and then revert it later when you want to restore the tab.

Does this remove the whole Tab ?
Would http://xenforo.com/community/recent-activity/ still be available ?

Yes it removes the whole tab. But you can still load direct links for the member list.
 
Top Bottom