How to delete Image cache in Magento programatically ? zendnwar February 6, 2014 Magento 0 Comments Just copy and paste use following code: Mage::getModel(‘catalog/product_image’)->clearCache(); Related Posts How to Disable Magento Multi Address Checkout zendnwar October 22, 2014 It is very simple. Just open checkout.xml Line number may be 58. <!–block type=” .. How to get Product ID by SKU in Magento? zendnwar April 12, 2013 This is Very Simple $product_sku = ‘3495E’; // use your own sku number $product_id ..