I can't seem to get the images in my gallery to link. I installed this plugin and created a field called link. Then I edited the gallery.php by replacing
<div class="ngg-gallery-thumbnail" >
<a href="<?php echo $image->imageURL ?>"
title="<?php echo $image->description ?>"
<?php echo $image-<thumbcode ?> >
<img title="<?php echo $image->alttext ?>"
alt="<?php echo $image->alttext ?>" src="<?php echo $image->
thumbnailURL ?>"
<?php echo $image-<size ?> />
</a>
</div>
with
<div class="ngg-gallery-thumbnail" >
<a href="<?php echo $image->ngg_custom_fields["Link"]; ?>"
title="<?php echo $image->description ?>"
<?php echo $image->thumbcode ?> >
<img title="<?php echo $image->alttext ?>"
alt="<?php echo $image->alttext ?>" src="<?php echo $image->
thumbnailURL ?>"
<?php echo $image->size ?> /></a>
<a href="<?php echo $image->ngg_custom_fields["Link"]; ?>">
<?php echo $image->alttext ?>
</div>
Then I entered http://www.whidbeyartsource.com/members/suetaves into the Link field but when I go to the slideshow and click on the image, it's just progresses to next image in the slideshow and doesn't go to the link.
What do I need to do?
http://wordpress.org/extend/plugins/nextgen-gallery-custom-fields/