Latest Post

Magento – Add "is in stock" column in Products Grid Manage in Backend

Here how to add new column to manage “in stock” and “out of stock” products edit this file: app/code/core/Mage/Adminhtml/Block/Catalog/Product/Grid.php around line 58 you find: 1234567891011$collection = Mage::getModel(’catalog/product’)->getCollection()             ->addAttributeToSelect(’sku’)             [...]