I have created my own module and want to call the updateAttributes Method:
Mage::getSingleton('catalog/product_action')
->updateAttributes(array($product_id), array('sku','123'), 0);
I get the following error: Fatal error: Call to a member function getAttributeId() on a non-object in [...]/httpdocs/app/code/core/Mage/Catalog/Model/Resource/Product/Action.php on line 69
How can I access this method? Thank you very much in advance!
As we're updating product attributes, a traditional approach is as follows:
please review the following as another reference: Magento getSingleton() vs getModel() issue
-- Update --
Double check the array syntax for the attributes being passed.