hey surfebloggy!
try with:
// *** build the gallery output
$out = '<br><h3>Related Images</h3><div class="ngg-related-gallery">';
foreach ($picturelist as $picture) {
// get the effect code
$thumbcode = $picture->get_thumbcode( __('Related images for', 'nggallery') . ' ' . get_the_title());
$out .= '<a href="/about/showcase?album=all&gallery=' . $picture->galleryid . '" title="' . stripslashes(nggGallery::i18n($picture->description)) . '" ' . $thumbcode . ' >';
$out .= '<img title="' . stripslashes(nggGallery::i18n($picture->alttext)) . '" alt="' . stripslashes(nggGallery::i18n($picture->alttext)) . '" src="' . $picture->thumbURL . '" />';
$out .= '</a>' . "\n";
}
$out .= '</div>' . "\n";
where /album/showcase is the path for gallery page, you have to put your path
hope it works for you
bye