首页顶端搜索栏如何去掉?

2016-07-07 15:02 来源:www.chinab4c.com 作者:ecshop专家

用不到那个看着不好看

回答:
在模板文件page_header.lbi里面删除。

要删除那段form代码

不同的模板修改方法略有不同,如果你使用的是官方默认模板,那么

修改 /themes/default/library/page_header.lbi

将下面代码删除即可
  1. <form id="searchForm" name="searchForm" method="get" action="search.php" **ubmit="return checkSearchForm()" class="f_r" style="_position:relative; top:5px;">
  2. <select name="category" id="category" class="B_input">
  3. <option value="0">{$lang.all_category}</option>
  4. {$category_list}
  5. </select>
  6. <input name="keywords" type="text" id="keyword" value="{$search_keywords|escape}" class="B_input" style="width:110px;"/>
  7. <input name="imageField" type="submit" value="" class="go" style="cursor:pointer;" />
  8. <a href="search.php?act=advanced_search">{$lang.advanced_search}</a>
  9. </form>
复制代码