Hi
I am having a weird issue, everything works fine except the last image of every album will not show but gets an error returned.
Fatal error: Call to a member function getTitle() on a non-object in /home/content/00/7926600/html/i-am-peter.com/themes/Square-One/image.php on line 27
Only happens with last image.
This is the code I use, and where I expect an issue.
<?php $nextimg = $_zp_current_image->getNextImage();$previmg = $_zp_current_image->getPrevImage(); ?>
<span class="link-orange">next image is</span>
<a class="" href="
<?php echo getNextImageURL();?>" title="
<?php echo gettext("Next Image"); ?>"><?php echo $nextimg->getTitle(); ?>
P.H.