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 get data from Magento System Configuration? zendnwar July 30, 2015 <?php Mage::getStoreConfig(‘sectionName/groupName/fieldName’); ?> .. Magento review count of product zendnwar February 12, 2015 <?php echo $review_count = $_product->getRatingSummary()->getReviewsCount() ?> ..