• Resolved vivalet

    (@vivalet)


    When I click on a preview image of a gallery on an album page, I would like to go to the gallery page with the gallery name in the header. Instead, I go to the album page for that gallery with the album header. Is there a fast way to change it to go to the gallery page?

Viewing 1 replies (of 1 total)
  • Thread Starter vivalet

    (@vivalet)

    found the answer here:

    https://www.ads-software.com/support/topic/231583?replies=2#post-1091223

    the solution is to change line 25 in album-extend.php from

    <a href="<?php echo $gallery->pagelink ?>"><img class="Thumb" alt="<?php echo $gallery->title ?>" src="<?php echo $gallery->previewurl ?>"/></a>

    to

    <a href="<?php echo get_permalink( $gallery->pageid ) ?>"><img class="Thumb" alt="<?php echo $gallery->title ?>" src="<?php echo $gallery->previewurl ?>"/></a>

    $gallery->pagelink changes to get_permalink( $gallery->pageid )

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: NextGEN Gallery] clicking preview image in album’ is closed to new replies.