Hi, I need the photo title to be shown in the album grid, not only its thumb. Is there a theme which already have this, or is there a simple way to add it to the default theme (maybe in a way that I don't need to rewrite it after every update)?
No theme I know but you can easily add it. Within the next_image loop you can just call the image title. See the theming tutorial and the functions documentation.
Comments
for example, in your album.php theme file, replace :
`
" title="<?php echo getBareImageTitle();?>"><?php printImageThumb(getAnnotatedImageTitle()); ?>
`
by :
`
" title="<?php echo getBareImageTitle();?>"><?php printImageThumb(getAnnotatedImageTitle()); ?>
" title="<?php echo getBareImageTitle();?>"><?php echo getBareImageTitle();?>
`
Cheers.