The simpler media website CMS
I'm using zpbootstrap, and have pages displaying sub-album thumbnails. The Titles display underneath the thumbnails, but I also wish to display the Descriptions. Can I do this? (Sorry if I've missed the answer in the User Guide).
Comments
You will need to modify the theme. Within the
next_album
loop on a theme'salbum.php
you can use any function that also works for the album itself. Examples in the included basic theme and on the demo theme linked from the theming tutorial.I see different possibilities and I'm not sure which is best. Try this:
In inc_print_image_thumb.php find the first occurrence of
<div class="hidden caption">
(line 31) and remove thehidden
classso it becomes
<div class="caption">
.Then at the bottom of the page find:
and change it into a conditional:
This is not thoroughly tested and may have unwanted side effects.