OK, in the wiew.php I replace
title="' . $gallery_name .
'" by
title="' . $img_list[$img_count] . '"
in this part :
while ($col_count <= $img_columns) {
echo '<td>';
if ($img_total > $img_count){
echo '<a href="' . WB_URL . $gallery_path . $img_list[$img_count] . '" class="lb_image_link" rel="lightbox[' . $gallery_name . ']" title="' . $img_list[$img_count] . '"><img class="lb_image" src="' . WB_URL . $thumb_path . $img_list[$img_count] . '" border="0" /></a>';
}
echo '</td>' . "\n";
$col_count++;
$img_count++;
}
How can I suppress the extension for the filename displayed?