I am trying to link the carousel images to different pages in my site and can't figure it out. I've looked throughout the forum and can't seem to find an exact answer. The closest one was from a girl who paid someone on fiver to help her. Here's what I tried so far:
Went to Gallery > Options > Effects > Set Javascript Thumbnail Effect to ‘None’
- .
- put "Link" as a custom field and added the page urls in each image "Link" field.
- Went to Plugins > Editor > Switch to NextGEN Gallery in the Drop down Box > and click on nextgen-gallery/view/gallery.php
- Found this code:
<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>
Replaced it with this code:
<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>
Please help!
My best,
Stephanie











