2012-01-13 92 views
2

使用MAGMI導入工具將CSV導入Magento時,我無法導入自定義選項(如大小:smalee/medium/large)。導入功能設置了基本產品,但自定義選項不會跨轉。Magento MAGMI:導入中未顯示產品屬性(自定義選項)

通過自定義的選項我的意思是場

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 ... 

在自定義選項菜單中...

即使使用示例CSV從MAGMI SourceForge上的Wiki:

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 ver。 1.6.1.0如果這改變了任何東西。

謝謝。

回答

2

你會得到哪些錯誤?你有沒有激活插件?

可以激活一個插件,通過Magmi Web界面(比較容易的方式,去http://yourserver/magmi/web/magmi.php,檢查一下,不要忘記在運行應用程序之前,單擊保存配置文件)或直接編輯0​​文件,添加到CustomOptionsItemProcessorclasses在itemprocessors部分:

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

我想自定義選項插件默認在Magmi中。我已將它安裝在文件夾plugins/extra/itemprocessors/customoptions中。

+0

沒有錯誤出現,只是不導入自定義選項。我不知道我必須激活一個插件...是在magmi \ plugins \ inc文件夾中的一個,還是我下載的一個? 謝謝 – 2012-01-13 12:24:49

+0

編輯我的答案。希望能幫助到你! – 2012-01-13 12:43:13

+0

它是額外的\ itemprocessors \ customoptions中的pablo_customoptions.php插件嗎?我試圖上傳並重新運行,但獲得相同的結果? – 2012-01-13 12:43:28

相關問題