3
Magento: Cara tercepat untuk memperbarui atribut produk
Saya mencari metode tercepat dan andal untuk pembaruan atribut massal. Di bawah ini adalah metode yang saya ketahui tetapi saya tidak tahu harus ke mana. $store_id = 0; Mage::getSingleton('catalog/product_action')->updateAttributes( array($product_id), array('attribute_code' => $attribute_code), $store_id ); atau $product->setData($attribute_code, 1234); $product->getResource()->saveAttribute($product, $attribute_code);