Magento – Images not displaying in cart page

magento-1.9product-imagesshopping-cart

enter image description hereref:mages not displaying in cart or mini cart

I have created one custom attribute imageurl to import product image url. Product images are loading from external url. Images displaying in product list and product detailed page. But simple products are not displaying in cart and mini cart page.. What can be the issue?

Best Answer

Edit /app/design/frontend/PACKAGE/THEME/template/checkout/cart/item/default.phtml and use below code to get an ImageUrl :

<img src="<?php echo Mage::getModel("catalog/product")->load($_item->getProduct()->getId())->getImageurl(); ?>" />