ecshop顶部搜索增加品牌选择

2010-07-26 18:27 来源:www.chinab4c.com 作者:admin

      ecshop顶部搜索增加品牌选择,是为了在顶部搜索中,增加品牌选项,让客户在前台就能精准的找到所需要的产品.ecshop二次开发该功能之后,能够方便的增加ecshop的一些忠实客户.

1:includes/lib_main.php

function assign_template($ctype = '', $catlist = array())

$smarty -> assign('brand_id_list_top',$GLOBALS['db'] -> getAll("select  * from  ".$GLOBALS['ecs']->table('brand')));

2:page_header.lbi

<select name="brand" id="brand" class="B_input">
      <option value="0">请选择品牌</option>
   {foreach from = $brand_id_list_top item = item_brand}
    <option value="{$item_brand.brand_id}">{$item_brand.brand_name}</option>
   {/foreach}
     
    </select>

来源:http://www.chinab4c.com