MyBB Community Forums

Full Version: Move Search To Top (Member List) [1.6 & 1.4]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Live Example - http://www.drugforums.us/memberlist.php

Personally i think its odd that the member search is on the bottom of the memberlist page, but no worries we can fix that with ease.

Admin CP > Templates > *Your Theme* > Member List > Member List > Full Edit

Ctrl + F for "{footer}" and above you should see "</form>" copy that all the way up until you see "<br style="clear: both;" />" which is right below "{$multipage}" the final outcome should be this C+P
<br style="clear: both;" />
<br />
<form method="post" action="memberlist.php">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="3">
	<div class="float_right">
		<strong><a href="memberlist.php?action=search">{$lang->advanced_search}</a></strong>
	</div>
	<div><strong>{$lang->search_members}</strong></div>
</td>
</tr>
<tr>
	<td class="tcat"><strong><label for="username">{$lang->username}</label></strong></td>
	<td class="tcat"><strong><label for="website">{$lang->website}</label></strong></td>
	<td class="tcat"><strong><label for="sort">{$lang->sort_by}</label></strong></td>
</tr>
<tr>
	<td class="trow1" width="33%" style="vertical-align: top;">
		{$lang->contains}<br />
		<input type="text" class="textbox" name="username" id="username" style="width: 99%; margin-top: 4px;" value="{$search_username}" />
	</td>
	<td class="trow1" width="33%" style="vertical-align: top;">
		{$lang->contains}<br />
		<input type="text" class="textbox" name="website" id="website" style="width: 99%; margin-top: 4px;" value="{$search_website}" />
	</td>
	<td class="trow1" width="33%">
		<select name="sort" id="sort" style="width: 99%;">
			<option value="username"{$sort_selected['username']}>{$lang->sort_by_username}</option>
			<option value="regdate"{$sort_selected['regdate']}>{$lang->sort_by_regdate}</option>
			<option value="lastvisit"{$sort_selected['lastvisit']}>{$lang->sort_by_lastvisit}</option>
			<option value="postnum"{$sort_selected['postnum']}>{$lang->sort_by_posts}</option>
			<option value="referrals"{$sort_selected['referrals']}>{$lang->sort_by_referrals}</options>
		</select><br />
		<span class="smalltext">
		<input type="radio" class="radio" name="order" id="order_asc" value="ascending"{$order_check['ascending']} /> <label for="order_asc">{$lang->order_asc}</label><br />
		<input type="radio" class="radio" name="order" id="order_desc" value="descending"{$order_check['descending']} /> <label for="order_desc">{$lang->order_desc}</label>
		</span>
	</td>
</tr>
</table>
<div align="center"><br /><input type="submit" class="button" name="submit" value="{$lang->search}" /></div>
</form>

Cut it then paste it below "{$header}". Thats it and i think it makes more sense now Cool.



Any issues please post and help shall come.

[attachment=19751]
Simple yet effective Smile
Thanks
Thank you. Done this on my site, i prefer it also. Smile
(2010-10-18, 10:14 PM)MarkW7 Wrote: [ -> ]Thank you. Done this on my site, i prefer it also. Smile

Your welcome.
Thank you very much .

I Use it here : www.bahi-education.com
(2010-11-10, 01:38 AM)haytoch Wrote: [ -> ]Thank you very much .

I Use it here : www.bahi-education.com

Sorry for the late reply but your sites down now! Anyways I see no shame in bumping a decent tutorial.
http://drugforums.us/memberlist.php

For another look at it.. Looks better and seems more user friendly.
(2012-03-29, 08:48 PM)MichaudĀ© Wrote: [ -> ]http://drugforums.us/memberlist.php

For another look at it.. Looks better and seems more user friendly.

I'll add that link to my OP since my board is down, thanks.
Thank you mate, works great, and yes now is much better Big Grin

P.s maybe is ok for bump this thread could help alot of people who have problem with this Smile
Pages: 1 2