however it displays me now 3 times the same image file before the next image motif is shown … ???
aauro approach works for me.
Because I don’t need the $url variable, I replaced it with the $imageSrc, so I don’t have to manually add the urls.
Before:
$anchorTagAttributes = (!empty($url) ? ' rel="lightbox" href="' . $url . '" ' : '') . (!empty($urlTarget) ? ' target="' . $urlTarget . '" ' : '') . $noFollow;
After:
$anchorTagAttributes = (!empty($imageSrc) ? ' rel="lightbox" href="' . $imageSrc . '" ' : '') . (!empty($urlTarget) ? ' target="' . $urlTarget . '" ' : '') . $noFollow;
Step 1:
Open wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPluginSlideshowSlide/frontend_attachment.php
Step2:
Remove the $anchorTagAttributes from line 43/44 and copy & paste the above definition (“After:”) to line 95/96.
Step3:
Install the best Lightbox Plugin: http://wordpress.org/plugins/responsive-lightbox/