Hello !
I'm using a "a href" tag on every picture so user can quickly switch to the next album image (on image.php).
But of course, when it's a video, there is a problem. If you click on play, the page is changing because of the link ^^'.
Is there any way to ad a php"if" for filtering andremove the link. Thanks !
<div class="picture_container">
<?php if (hasNextImage()) { ?>
<?php printCustomSizedImage(getBareImageTitle(), NULL, 2200, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false); ?>
<?php } else { ?>
<?php printCustomSizedImage(getBareImageTitle(), NULL, 2200, NULL, NULL, NULL, NULL, NULL, NULL, NULL, false); ?>
<?php }
?>
</div>