Magento 1.9 – Get All Recently Viewed Product IDs

magento-1.9

I am trying to get all recently viewed product's id programmatically . I tried to check the reports/product_viewed and reports/product_abstract. But couldn't figure it out.

Best Answer

Try this code:

$collection = Mage::getSingleton('Mage_Reports_Block_Product_Viewed')->getItemsCollection();

Related Topic