2017-02-17 35 views
0

當我導入的產品比保存爲catalog_attribute_entity_text的產品屬性不可過濾時,但是當我再次保存管理產品時,該屬性將移至catalog_attribute_entity_int。導入產品後屬性過濾器不工作

此分層過濾器工作後。但是我的產品很多,所以如何將屬性catalog_product_entity_text移動到catalog_product_entity_int,並且有什麼方法可以實現這一目標。

+0

嘗試使用magmi導入產品。 – user247217

+0

產品已經以其他方式上傳了。 – Impunkj

回答

0

導入產品後運行核心Sql Query。

insert into catalog_product_entity_int (entity_type_id, attribute_id, store_id, entity_id, value) select entity_type_id, attribute_id, store_id, entity_id, value from catalog_product_entity_text where attribute_id = '81'; 

替換你的id屬性這個 通過直接SQL或通過Magento的運行SQL查詢。
謝謝