Log in

View Full Version : Code for search tags box?


Defkalion
05-01-2008, 10:15 PM
The "search tags" box , located in the tag cloud page, is extremely useful.

I want to use it in various pages in my forums, including forumhome, vbadvanced home and even Header. Where is this code located, so I could use it ?

GameWizard
05-02-2008, 07:26 AM
The code appears on the tag_cloud_page template:

<form action="tags.php" method="get">
<if condition="$session['sessionhash']">
<input type="hidden" name="s" value="$session[sessionhash]" />
</if>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" id="threadslist">
<tr>
<td class="tcat">$vbphrase[search_by_tag]</td>
</tr>
<tr>
<td class="alt1" align="center"><div style="width: $stylevar[formwidth]" align="$stylevar[left]">
<span id="tag_wrapper"><input type="text" id="tag_input" name="tag" size="25" style="width: 80%" class="bginput" /></span>
<input type="submit" class="button" value="$vbphrase[search]" />
</div></td>
</tr>
</table>
</form>

Although, I'm not certain if it will work on any other page, you'll have to test it out.

Defkalion
05-02-2008, 12:03 PM
That's great. I just tested it , by inserting the code in the header template, and it's working fine.

Thankyou for your help, much appreciated. :)