Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get base product image in Magento to resize it and display in cart sidebar.

Unfortunatelly this:

echo $this->helper('catalog/image')->init($_product, 'image')->resize(38, 38);

prints Magento placeholder image.

Base image is set for this product properly. Small image and thumbnail works great.

No idea what's going on.

EDIT: Solution: Get full product data this way:

$_product = Mage::getModel('catalog/product')->load($_item->getProduct()->getId());

and then use it as you wish:

echo $this->helper('catalog/image')->init($_product, 'image')->resize(38, 38);
share|improve this question
2  
Welcome to Stack Overflow. It's absolutely OK to self-answer your own question, but please post it as actual answer rather than inside the question itself. This allows the answer to be voted/accepted and helps us to keep the "Unanswered" list more clear. – Jürgen Thelen Aug 17 '12 at 1:16

3 Answers

Try:

$this->helper('catalog/image')->init($_product, 'image')->keepFrame(false)
->constrainOnly(true)->resize(38,38);
share|improve this answer

I think you are looking for this:

echo Mage::getModel('catalog/product_media_config')
        ->getMediaUrl( $product->getImage() ); //getSmallImage(), getThumbnail()

Credit should be given to BenMarks who gave this answer.

share|improve this answer
$product->getImage() returns null. With small and thumbnail works. Does it matters its called in Mage_Checkout_Block_Cart_Sidebar? – Dave Aug 16 '12 at 21:01
   
if you have $item as product in cart try first: $product=Mage::getModel('category/product')->load($item->getId()); echo Mage::getModel('catalog/product_media_config') ->getMediaUrl( $product->getImage() ); – Jerzy Zawadzki Aug 16 '12 at 21:04
Jerzy, almost :) $_product = Mage::getModel('catalog/product')->load($_item->getProduct()->getId()); And finally it's working as intended. DziÄ™ki. – Dave Aug 16 '12 at 21:24
I'm happy it's working for you! :) – pzirkind Aug 16 '12 at 21:37

Small image and thumbnail works great.

Then try small_image instead of image, like this:

echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(38, 38);
share|improve this answer
But I want to get base image, not small_image. It matters for me. – Dave Aug 16 '12 at 21:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.