To replace the navbits, that displays 'Search Results', in search.php I added the bold between:
// add to the navbits
$navbits[''] = $vbphrase['search_results'];
if ($award !=""){
$navbits[''] = 'Editor\'s Pick';
}
$templatename = 'search_results';
Replace Editor's Pick with whatever you want
Quote:
Originally Posted by Lionel
in search.php
find:
$displayUsers = implode(" $vbphrase[or] ", $display['users']);
under it put:
$award="mytest"; //or whatever just to create the condition
then in search_results template, after:
<phrase 1="$searchtime">$vbphrase[search_took_x_seconds]</phrase>
</span>
put in
<if condition="$award"><img src="images/misc/rosette.gif"> <else />
and before the close of the </td>
you close the condition
</if>
you can put whatever you want next to image
|