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) […]