[Tutorial] How to get Lightbox to work with Slideshow
-
Hello,
While researching how to get lightbox to work with this plugin I must of read a dozen or so threads in these support forums asking for a solution to this problem. I found the answer in the following thread (https://www.ads-software.com/support/topic/clickable-images-1) and combined the various solutions in order to get lightbox to work properly with this plugin.
Credit goes to the posters in that thread, I’m just simplifying the process by posting the edits and their updated locations.
In
slideshow-jquery-image-gallery\views\SlideshowPluginSlideshowSlide\frontend_attachment.phpFind:
$anchorTagAttributes = 'href="' . $url . '" ' . (strlen($urlTarget) > 0 ? 'target="' . $urlTarget . '" ' : '') . $noFollow;
Replace With:
$anchorTagAttributes = ' rel="lightbox" href="' . $url . '" ' . (strlen($urlTarget) > 0 ? 'target="' . $urlTarget . '" ' : '') . $noFollow;
Find:
// If image is available
Place Above:
$anchorTagAttributes = ' rel="lightbox" href="'.htmlspecialchars($imageSrc) . '" ' . (!empty($urlTarget) ? ' target="' . $urlTarget . '" ' : '') . $noFollow; $anchorTag = '<a>'; $endAnchorTag = '</a>';
I’m using responsive lightbox and it works perfectly.
https://www.ads-software.com/plugins/responsive-lightbox/https://www.ads-software.com/plugins/slideshow-jquery-image-gallery/
- The topic ‘[Tutorial] How to get Lightbox to work with Slideshow’ is closed to new replies.