5 images was missing, i think the lightbox module has not been fully installed,
edit includes/modules/YOUR_TEMPLATE/additional_images.php (OR includes/modules/additional_images.php),
find the code below:
then change the HREF attribute to $base_image like this:PHP Code:$script_link = '<script language="javascript" type="text/javascript"><!--' . "\n" . 'document.write(\'' . ($flag_display_large ? '<a href="javascript:popupWindow(\\\'' . $large_link . '\\\')">' . $thumb_slashes . '<br />' . TEXT_CLICK_TO_ENLARGE . '</a>' : $thumb_slashes) . '\');' . "\n" . '//--></script>';
finally, add the `image` css class to the params:PHP Code:$script_link = sprintf('<a href="%s" target="_top">%s<span class="zoom"></span></a>', $base_image, $thumb_slashes);
find the code below:
then add image class like this:PHP Code:$list_box_contents[$row][$col] = array('params' => 'class="additionalImages centeredContent back"' . ' ' . 'style="width:' . $col_width . '%;"',
PHP Code:$list_box_contents[$row][$col] = array('params' => 'class="image additionalImages centeredContent back"' . ' ' . 'style="width:' . $col_width . '%;"',


Reply With Quote

