
Originally Posted by
sephiroth
yes, I'm looking for how to determine if there are additional images...

Linda has already advised you in regards where you'll need to do your customisations (no sensible person would argue with her) 
You will probably find it convenient to use one of zen-carts own functions to perform the actual 'does it exist' check.
The function (located in /functions/general.php) which you should NOT edit. is:
function zen_info_image($image, $alt, $width = '', $height = '')
This is the full function
Code:
function zen_info_image($image, $alt, $width = '', $height = '') {
if (zen_not_null($image) && (file_exists(DIR_FS_CATALOG_IMAGES . $image)) ) {
$image = zen_image(DIR_WS_CATALOG_IMAGES . $image, $alt, $width, $height);
} else {
$image = TEXT_IMAGE_NONEXISTENT;
}
return $image;
}
Hope you find this useful.
Cheers
Rod