Thanks
Tubs

Just done that to ours and it works fine.<div class="ProductThumbImage" style="width:%%GLOBAL_ProductThumbWidth%%px; height:%%GLOBAL_ProductThumbHeight%%px;">
<a style="margin:auto;" href="%%GLOBAL_ZoomImageURL%%" onclick="%%GLOBAL_TinyImageClickJavascript%% return false;">
<img src="%%GLOBAL_ThumbImageURL%%" alt="%%GLOBAL_ProductName%%" title="%%GLOBAL_ProductName%%" />
</a>
</div>
change it to this:$GLOBALS['ImageDescription'] = isc_html_escape($productImage->getDescription());
if($GLOBALS['ImageDescription'] == '') {
$GLOBALS['ImageDescription'] = GetLang("Image") . " " . ($i + 1);
}
If you have put in any manual descriptions it will use them, otherwise it will just revert to the product name. Simples$GLOBALS['ImageDescription'] = isc_html_escape($productImage->getDescription());
if($GLOBALS['ImageDescription'] == '') {
$GLOBALS['ImageDescription'] = $GLOBALS['ProductName'];
}