I am trying to make the fullsize image to link to the next image in the album but it doesn't seem to work. I can see that it is linking to the next image but it isn't showing the current full size image.
This is the code I used
`
"" title="<?php echo getBareImageTitle();?>"`
Comments
By default there is no next/prev for full images itself because it is not really displayed on a theme page. It would be possible to create a custom theme page for that to mimic the image.php behaviour with it.
So what exactly are you doing and want to achieve where?
`
<?php
if(hasNextImage()) {
?>
">" title="<?php echo getBareImageTitle();?>"
"
}
?>
`
What did I do wrong?