在opencart中编辑我的精选模块并添加新产品时,我的搜索是按名称进行的,而不是按型号进行搜索...
有可能按产品型号搜索?而不是名字
这种情况发生在需要添加产品的所有模块中
答案 0 :(得分:0)
您只需编辑以下文件即可完成更多操作:
\opt\lampp\htdocs\opencart\admin\view\template\module\featured.tpl
第121行
url: 'index.php?route=catalog/product/autocomplete&token=<?php echo $token; ?>&filter_name=' + encodeURIComponent(request.term),
你需要
url: 'index.php?route=catalog/product/autocomplete&token=<?php echo $token; ?>&filter_model=' + encodeURIComponent(request.term),
您需要将filter_model作为您要输入的参数