共计 414 个字符,预计需要花费 2 分钟才能阅读完成。
有时候可能想改变一下全站的所有价格,运行一遍如下代码可以使全站所有商品的价格变成原来的1.5倍
- $collection = Mage::getResourceModel(‘catalog/product_collection’)->load();
- foreach($collection as $items){
- $product = Mage::getModel(‘catalog/product’)->load($items->getId());
- $product->setPrice(round($product->getPrice()*1.5));
- if($product->getSpecialPrice()){
- $product->setSpecialPrice(round($product->getSpecialPrice()*1.5));
- }
- $product->save();
- }
正文完