Preparing such export is quite easy, so let’s begin with adding new button in products listing: in app/code/core/Mage/Adminhtml/Block/Catalog/Product.php in _prepareLayout() function add such code: $this->_addButton(‘export_fact’, array( ‘label’ => […]
Magento
Posted on:
How to sort Magento products by date added as default
Today I had to change Magento default products list sorting to sort by product’s date. In fact we don’t need to sort by date, just by entity_id which […]
Magento
Posted on:
How to get Magento categories with full paths
Maybe someone will need it, so here we go with code: echo “<pre>”; $category = Mage::getModel(‘catalog/category’); $tree = $category->getTreeModel(); $tree->load(); $ids = $tree->getCollection()->getAllIds(); $categories = array(); if ($ids) […]