Just wondering how do i make the image clickable (<a href=...) in the "New Products" section. I've looked at includes/modules/new_products.php file. Looks like this file is associated with the New Products table. The "a href" tag in that file is not making the image clickable.

A chunk of code from new_products.php file goes:
$list_box_contents[$row][$col] = array('align' => 'center',
'params' => 'class="smallText" width="' . $col_width . '%" valign="top" style="padding-top: 5px; padding-bottom: 5px;',
'text' => '<a href="' . zen_href_link(zen_get_info_page($new_products->fields['products_id']), 'products_id=' . $new_products->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $new_products->fields['products_image'], $new_products->fields['products_name'], IMAGE_PRODUCT_NEW_WIDTH, IMAGE_PRODUCT_NEW_HEIGHT, $image_params) . '</a><br /><a href="' . zen_href_link(zen_get_info_page($new_products->fields['products_id']), 'products_id=' . $new_products->fields['products_id']) . '">' . $new_products->fields['products_name'] . '</a><br />' . $products_price);

Has anyone encountered this problem or am I missing something here?

Thanks a lot
Ben