want these hack

For any of you running adsense, using the adsense search on your site will generate more revenue. If you don't already have it setup, log into your adsense account and click on the "AdSense for Search" link then customize it to your liking. More so to make it fit better in the dropdown box. You may also add your site to the search, it will generate more clicks.

Now add it do your Search dropdown, in the navbar template find:

HTML:
<td class="vbmenu_option"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[advanced_search]</a></td>
		</tr>


Add this underneath:

HTML:
		<tr>
			<td class="thead">Search Google</td>
		</tr>
<!-- SiteSearch Google -->
replace this text with your adsense search code
<!-- SiteSearch Google -->
 
I've been asked a couple of times how I put the Google search in the search on the navbar, so I thought I would post it here maybe it's of use to others

Go to your Google adsense account and choose Search Settings, choose your language, country etc and make the Length of text box 10, tick Google logo above text box, then update code.

In your navbar template place your Google code between:


HTML:
		<tr>
			<td class="vbmenu_option"><a href="search.php?$session[sessionurl]" accesskey="4" rel="nofollow">$vbphrase[advanced_search]</a></td>
		</tr>
		</table>


and


HTML:
</div>
	<!-- / header quick search form -->

All done
 
Back
Top