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…