Hi Sheona,
Maybe helps this you further.
<?php foreach ( $images as $image ) : ?>
Place the code below in the gallery.php file after the line above.
<?php
// BEGIN HACK
// Case if description present
if ( strlen($image->description) > 1 )
{
// NEW EXIF hack (11.19.10)
require_once(NGGALLERY_ABSPATH . '/lib/meta.php');
$meta = array();
$pdata = new nggMeta($image->path);
// End EXIF hack
$newdesc = "<b>" . $image->alttext .
"</b>" . " :: " . $image->description;
// 11.19.10 -- append some EXIF data
$newdesc .= " (" . substr($pdata->get_date_time(),0,10) . ")";
// end append EXIF
}
// Case if no description
else {
$newdesc = "<b>" . $image->alttext . "</b>";
}
// END HACK
?>
and change the code below
<a href="<?php echo $image->imageURL ?>" title="<?php echo $image->alttext ?>" <?php echo $image->thumbcode ?>
To:
<a href="<?php echo $image->imageURL ?>" title="<?php echo $image->alttext ?><br><?php echo $image->description ?>" <?php echo $image->thumbcode ?>
and now you will get the title and description below the lightbox.
Good luck!
Regards,
Jason
JSS Online