Log in

View Full Version : Search For Members In Navbar Dropdown


sabret00the
12-15-2004, 10:00 PM
throw your board into debug mode and then change the phrase
search_members
so it belongs to the GLOBAL GROUP (if you can't be arsed to do that, just replace the phrase in the template with the "Search Members")

now in your navbar template find
<!-- header quick search form -->
<div class="vbmenu_popup" id="navbar_search_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[search_forums]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="search.php" method="post">
<input type="hidden" name="do" value="process" />
<input type="hidden" name="showposts" value="0" />
<input type="text" class="bginput" name="query" size="20" />$gobutton<br />
</form>
</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?$session[sessionurl]">$vbphrase[advanced_search]</a></td>
</tr>
</table>
</div>
<!-- / header quick search form -->

and replace with

<!-- header quick search form -->
<div class="vbmenu_popup" id="navbar_search_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[search_forums]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="$vboptions[bburl]/search.php" method="post">
<input type="hidden" name="do" value="process" />
<input type="hidden" name="showposts" value="0" />
<input type="text" class="bginput" name="query" size="20" />$gobutton<br />
</form>
</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="$vboptions[bburl]/search.php?$session[sessionurl]">$vbphrase[advanced_search]</a></td>
</tr>
<tr>
<td class="thead">$vbphrase[search_members]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="$vboptions[bburl]/memberlist.php" method="post">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="getall" />
<input type="text" class="bginput" name="ausername" size="20" value="$ltr" title="$vbphrase[username]" />$gobutton
</form>
</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="$vboptions[bburl]/memberlist.php?$session[sessionurl]do=search">$vbphrase[advanced_search]</a></td>
</tr>
</table>
</div>
<!-- / header quick search form -->

Aeon'sDestiny
06-10-2005, 06:14 PM
Well, I just did this without seeing your previous mod completely by chance while toying around with my vB board today. It's a great idea, I just hate the fact that I didn't come up with it sooner.

calorie
06-11-2005, 09:56 AM
LOL, me too. See attached...

Borgs8472
07-04-2005, 07:45 PM
Installed calorie's version...