在 CSV Import Prestashop 中将 Match Reference 设置为 true
Set Match Reference to true at CSV Import Prestashop
有人可以告诉我在哪里可以将匹配参考函数设置为 true 而不是标准的 false 吗?
我已经在 AdminImportController 的 ImportProducts 函数中尝试过了
通过设置
$match_ref = Tools::getValue('match_ref');
到
$match_ref = Tools::getValue('match_ref', 真);
但是没有 Luck 按钮仍然按标准显示 No here you find a picture of what button is meaned
谢谢
设置该值与默认按钮无关。并且没有针对它的设置,因此它始终默认显示为 No
.
您需要做的是打开文件 administration/themes/default/template/controllers/import/helpers/form/form.tpl
并在底部找到 javascript 部分。
在 $(document).ready()
函数中的某处插入
$('#match_ref').parent().trigger('click');
这将在您每次加载产品导入选项时强制将按钮设置为 Yes
。
PS:我不建议编辑核心文件或模板,所以我建议您保留原始模板并将其复制到 override/controllers/admin/templates/import/helpers/form/
并在此文件中进行修改。
有人可以告诉我在哪里可以将匹配参考函数设置为 true 而不是标准的 false 吗?
我已经在 AdminImportController 的 ImportProducts 函数中尝试过了
通过设置
$match_ref = Tools::getValue('match_ref');
到
$match_ref = Tools::getValue('match_ref', 真);
但是没有 Luck 按钮仍然按标准显示 No here you find a picture of what button is meaned
谢谢
设置该值与默认按钮无关。并且没有针对它的设置,因此它始终默认显示为 No
.
您需要做的是打开文件 administration/themes/default/template/controllers/import/helpers/form/form.tpl
并在底部找到 javascript 部分。
在 $(document).ready()
函数中的某处插入
$('#match_ref').parent().trigger('click');
这将在您每次加载产品导入选项时强制将按钮设置为 Yes
。
PS:我不建议编辑核心文件或模板,所以我建议您保留原始模板并将其复制到 override/controllers/admin/templates/import/helpers/form/
并在此文件中进行修改。