Custom album view Nextgen
-
Hi everyone!
I would like to create custom album view which will be showing all images of galeries, not only thumbnail.
I created my custom album view and I have problem with loop when i want to show images.
What should i do to get image list from gallery in album?
This is my loop:
<?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($galleries)) : ?> <ul id="slider"> <?php foreach ($galleries as $gallery) : ?> <li> <h3><?php echo $gallery->title ?></h3> <p><?php echo $gallery->galdesc ?></p> <!-- I want to show here all images from each gallery - something like we use shortcode [nggallery id=X] --> </li> <?php endforeach; ?> </ul> <?php endif; ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Custom album view Nextgen’ is closed to new replies.