View Single Post
  #9  
Old 04-22-2009, 12:05 AM
  Victor D's Avatar 
Victor D Victor D is offline
 

X-Adept
  
Join Date: Aug 2008
Posts: 643
 

Default Re: How to place my search box in the speed bar?

Your skin is customized so I'm not sure if it helps
the common solution is to create a new file in skin1/customer with name for example menu_search.tpl
and paste into it
Code:
{capture name=menu} <form method="post" action="search.php" name="productsearchform"> <input type="hidden" name="simple_search" value="Y" /> <input type="hidden" name="mode" value="search" /> <input type="hidden" name="posted_data[by_title]" value="Y" /> <input type="hidden" name="posted_data[by_shortdescr]" value="Y" /> <input type="hidden" name="posted_data[by_fulldescr]" value="Y" /> <input type="hidden" name="posted_data[by_sku]" value="Y" /> <input type="hidden" name="posted_data[including]" value="all" /> <table cellpadding="0" cellspacing="0" width="100%"> <tr> <td valign="middle" style="padding:0px;" align="right" width="100%"><input type="text" name="posted_data[substring]" value="{$search_prefilled.substring|escape}" /></td> <td valign="middle" style="padding-left:3px;" > <table cellspacing="0" cellpadding="0" onclick="javascript: document.productsearchform.submit();"> <tbody> <tr> <td style="padding:0px;"><a href="javascript: document.productsearchform.submit();">{include file="buttons/go.tpl"}</a></td> </tr> </tbody> </table> </td> </tr> </table> <a href="search.php" style="background:none;padding-left:0px" ><u>{$lng.lbl_advanced_search}</u></a> </form> {/capture} {include file="menu.tpl" menu_title=$lng.lbl_search menu_content=$smarty.capture.menu}

then find in your customer/home.tpl
Code:
{include file="customer/menu_cart.tpl" } <br />

and insert right after it
Code:
{include file="customer/menu_search.tpl" }

I need your skin1/head.tpl to find how to remove existing searchbox
__________________
Regards,
Victor Dubiniuk

X-Cart Skins Store
- twenty two different skins for 4.1.x and 4.2.x;
- 4.3.x compatible versions are available;
- refresh you store now!

Smart menu X-Cart add-on for 4.1.8 - 4.3.x
Featured Products Slide Show X-Cart add-on for 4.1.8 - 4.3.x
Reply With Quote