Hey,
As some of you may know, the internal search in vb is not always the best. Google often delivers more relevant search results.
I am wondering if it is possible to have the option for a user to type their query into one text box, and then check a button for google search (default) or internal forum search.
At the moment, the two search functions are separate, but combining them would be handy. The code I have for my google custom search is:
Code:
<form action="http://www.paintballer.ie/site_search.php" id="cse-search-box">
<div>
<input type="text" name="q" size="20" />
<input type="hidden" name="cx" value="partner-pub-xxxxxxxxxxxxxx" />
<input type="hidden" name="cof" value="FORID:9" />
<input type="hidden" name="ie" value="ISO-8859-1" />
<input type="submit" name="sa" value="Search" />
</div>
</form>
I need to combine this with the standard vbulletin one.
I am sure that is it a simple edit, I am just not to familiar with it