添加搜索条件,按品牌搜索,按分类名搜索,方法如下:
打开search.php
搜索下面代码:
[code lang="php"]
$keywords .= "(goods_name LIKE '%$val%' OR goods_sn LIKE '%$val%' OR keywords LIKE '%$val%' $sc_dsad)";
[/code]
将上面代码替换为:
[code lang="php"]
$keywords .= "(goods_name LIKE '%$val%' OR cat_name LIKE '%$val%' OR brand_name LIKE '%$val%' OR goods_sn LIKE '%$...