Thread starter
wzshop
(@wzshop)
Gelukt via de code:
in views/slideshowplugin/slideshow.php
<?php if (empty($_SESSION['count'])) {
$_SESSION['count'] = 1;
} else {
$_SESSION['count']++;
} ?>
In /slideshow.php
if(isset($_SESSION['count'])):
unset($_SESSION['count']);
endif;
en in views/slideshowplugin/slideshowslide/frontend_attachment:
if(empty($url))
$anchorTagAttributes = 'rel="lightbox[' . $_SESSION['count'] . ']" href="' . $imageSrc . '" ' . (!empty($urlTarget) ? ' target="' . $urlTarget . '" ' : '');