Viewing 3 replies - 1 through 3 (of 3 total)
  • Just trying to find out how to do this too.

    I don’t know much php so this is probably not the most elegant solution but if you put the update the album extended template with the below code it works!

    <?php
    /**
    Template Page for the album overview (extended)
    
    Follow variables are useable :
    
    	$album     	 : Contain information about the album
    	$galleries   : Contain all galleries inside this album
    	$pagination  : Contain the pagination content
    
     You can check the content when you insert the tag <?php var_dump($variable) ?>
     If you would like to show the timestamp of the image ,you can use <?php echo $exif['created_timestamp'] ?>
    **/
    ?>
    <?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($galleries)) : ?>
    
    <div class="ngg-albumoverview">	
    
    	<!-- List of galleries -->
    	<?php
    	foreach ($galleries as $gallery){
    		echo do_shortcode("[nggallery id=".$gallery->gid."]");
    	}
     	?>
    
    	<!-- Pagination -->
     	<?php echo $pagination ?>
    
    </div>
    
    <?php endif; ?>

    That solution works fine for me. In case anyone wants to display galleries with captions, use this modification. BTW, I copied “album-extend.php” into a folder called “nggallery” in my theme folder, and made the modification to that page only.

    [Code moderated as per the Forum Rules. Please use the pastebin]

    Hi fxfuture, can you let me know where you insert the code you provided? I want to make a page that shows all my galleries as well, but not sure where your code should be placed. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: NextGEN Gallery] Show all photos from album in one page’ is closed to new replies.