Magento EE 1.13 & EE 1.8

Magento EE 1.13 is finally out (last version was released in December. The focus of this version has been performance, especially regarding indexing. These are good news, as our experience with indexing problems and performance during the last months has been really bad. Magento CE 1.8 will follow soon, something completely Read more…

Magento Professional Edition no longer exists

February 1st: Magento announces that Magento Professional edition will disappear (they’ll phase it out, they said). This means that people who have recently bought the professional edition have been left hanging. In our case, we have 3 clients that have recently paid for a Magento PE license and now we Read more…

Get customer product alert subscriptions list in Magento

Some things are easy, some things are not. This one is easy-peasy. If you want to get the product list that a customer has been subscribed to (price or stock alert), you need to use the productalert model. Product stock alert list $customer_id = Mage::getSingleton(‘customer/session’)->getCustomer()->getId(); $customer_stock_alerts = Mage::getModel(‘productalert/stock’) ->getCollection() ->addFieldToFilter(‘customer_id’, Read more…