I am trying to get basket items for this product;
I tried this code:
$product = Mage::getModel('catalog/product') ->setStoreId(Mage::app()->getStore()->getId()) ->load('2784'); $quote = Mage::getSingleton('checkout/cart')->getQuote(); $cartItems = $quote->getItemByProduct($product); foreach ($cartItems as $item) { echo $item->getId()."<br/>"; }
but gives nothing.
How can I change my code to use "getItemByProduct" in the correct form?
Thanks for the help.
source share