Here is an example how you can add search box in sidebar. To be used at your own risk. * Create a backup of all refered files * Create a new file and name it search.tpl in /template//sidebar_modules/ * Copy the following code into search.tpl =========================search.tpl==============
{php} echo " \"expand\""; {/php} Search{#PLIGG_Visual_Search_Title#}
{if $templatelite.get.search neq ""} {assign var=searchboxtext value=$templatelite.get.search|sanitize:2} {else} {assign var=searchboxtext value=#PLIGG_Visual_Search_SearchDefaultText#} {/if}
==========================search.tpl============= * Save the file. * Open and edit sidebar.tpl file found in /template// * Append the following code where ever you want the search box to appear in sidebar. ==========================sidebar.tpl============ Anywhere after: {if $user_authenticated ne true} {assign var=sidebar_module value="login"}{include file=$the_template_sidebar_modules."/wrapper2.tpl"} {/if} Add: {assign var=sidebar_module value="search"}{include file=$the_template_sidebar_modules."/wrapper.tpl"} ==========================sidebar.tpl============ * Thats it. Visit your website to see the search box right in your sidebox.