在 opencart 中编辑我的特色模块并添加新产品时,我的搜索是按名称,而不是按型号...
可以按产品型号搜索吗??而不是名字
这发生在需要添加产品的所有模块中
在 opencart 中编辑我的特色模块并添加新产品时,我的搜索是按名称,而不是按型号...
可以按产品型号搜索吗??而不是名字
这发生在需要添加产品的所有模块中
您无需执行更多操作,只需编辑以下文件:
\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 作为你将要输入的参数