2

使用 MAGMI 导入工具将 CSV 导入 Magento 时,我无法导入自定义选项(如大小:smalee/medium/large)。导入设法放入基本产品,但自定义选项不会转移。

通过自定义选项,我的意思是字段

Title, Input Type, Is Required,  Sort Order

    Title,    Price,    Price Type, SKU,    Sort Order
    Title,    Price,    Price Type, SKU,    Sort Order
    Title,    Price,    Price Type, SKU,    Sort Order
    and so on ...

在自定义选项菜单中找到...

即使使用来自 MAGMI SourceForge Wiki 的示例 CSV:

sku,name,description,price,Size:drop_down:1
T-Shirt1,T-Shirt,A T-Shirt,5.00,Small|Medium|Large
T-Shirt2,T-Shirt2,Another T-Shirt,6.00,XS|S|M|L|XL 

...它无法导入属性。

所以我只是将 MAGMI 与 SourceForge 提供的示例数据一起使用在一个空白的 magento 产品列表上,并且它不能正确传输。

任何人都可以阐明可能出了什么问题吗?

我正在使用 Magento 版本。1.6.1.0 如果这改变了任何东西。

谢谢。

4

1 回答 1

2

你得到了哪些错误?你激活插件了吗?

您可以通过 Magmi Web 界面激活一个插件(更简单,转到http://yourserver/magmi/web/magmi.php,检查它,不要忘记在运行应用程序之前单击保存配置文件)或直接编辑magmi/conf/plugins.conf文件,添加CustomOptionsItemProcessorclassesitemprocessors 部分:

...
[PLUGINS_ITEMPROCESSORS]
classes = "[...,] CustomOptionsItemProcessor"
...

我猜自定义选项插件默认出现在 Magmi 中。我已将它安装在文件夹中plugins/extra/itemprocessors/customoptions

于 2012-01-13T12:00:55.970 回答