Magento bulk price changes

后端 未结 4 811
孤城傲影
孤城傲影 2021-02-10 01:22

What I\'m trying to do is, a bulk price change on products in a certain category. We receive suggested retail prices from our vendor, but sometimes these don\'t work for us. So

4条回答
  •  情深已故
    2021-02-10 02:09

    however you can use magento data object to update example:

    $product = Mage::getModel('catalog/product')->load($id);
    $product->setData('price',$value);
    $product->save();
    

提交回复
热议问题