To get the image src in a template file the following code is used:

$this->helper('catalog/image')->init($_product, 'small_image')->resize(200,100);

But how can I find out if there is an image associated with the product or if the placeholder image will be used?

(Magento v. 1.4.2)

link|improve this question
feedback

1 Answer

up vote 9 down vote accepted

Placeholder is always used if product dosen't have image.

You can check those methods:

$product->getSmallImage();
$product->getThumbnail();
$product->getImage();

If product has image those moethod will return path.

Or you can check this method

$product->getMediaGalleryImages();

UPDATE 14.10.2011

no_selection is set when you check in BO > Product Edit Page > Images 'No image' chackbox

link|improve this answer
3  
Nice, for some reason I got the string "no_selection" returned on some products where the place-holder image was used, so right now I'm using $has_real_image_set = ($_product->getSmallImage() != null && $_product->getSmallImage() != "no_selection"); – Robban Feb 19 '11 at 11:56
feedback

Your Answer

 
or
required, but never shown

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