Hello

I am getting back to working on my Zencart/Gallery integration site.

I am trying to disable the larger image link on the product detail page.

I am trying to change tpl_product_gallery_info_display.php

Original code

<td align="center" valign="top" class="smallText" rowspan="3" width="<?php
echo SMALL_IMAGE_WIDTH;
?>">
<?php
if (zen_not_null($productImage)) {
echo '<a href="' . $productUrl . '"><img src="'
. DIR_WS_IMAGES . $productImage . '"&g2_imageViewsIndex=1 border="0" alt="' . $products_name . '" title="'
. $products_name . '" hspace="5" vspace="5" />' . '<br />' . TEXT_CLICK_TO_ENLARGE . '</a>';
} else {
echo '&nbsp;';
}
?>
</td>

I have tried amending this to


<td align="center" valign="top" class="smallText" rowspan="3" width="<?php
echo SMALL_IMAGE_WIDTH;
?>">
<?php
if (zen_not_null($productImage)) {
echo '<img src="'
. DIR_WS_IMAGES . $productImage . '"&g2_imageViewsIndex=1 border="0" alt="' . $products_name . '" title="'
. $products_name . '" hspace="5" vspace="5" />' . '<br />' . TEXT_CLICK_TO_ENLARGE .;
} else {
echo '&nbsp;';
}
?>
</td>



But this has not worked.

Could someone please point me in the right direction to do this?

Cheers
Danielle