I have the following script in my magento root directory for updating the prices of all products in the store which was kindly suggested by a stack overflow member: This adds 3% to all product prices but does not round the number ?
<?php
require 'app/Mage.php';
Mage::app();
$products = Mage::getModel('catalog/product')->getCollection();
foreach ($products as $product) {
$product->setPrice($product->getPrice()* 1.03);
$product->save();
}
?>
I have tried some php code such as ceil and round but don't really know how to make it work with this code , any help would be appreciated many thanks
ceil($product->getPrice()* 1.03)– Henesnarfel Feb 6 at 15:12