Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Rainvur Jefferson Wilbre

    (@rainthebat)

    bump, I think it is not too much to ask for a hack to get the gallery pagination bar to the top of the gallery, as well as/or the bottom. Unless the page bar can load only after the pictures are loaded.

    M

    (@metacomcreative)

    Hi Rain,
    I realize I am late on this, but I hope I can still help. If you look near the bottom of plugins/nextgen-gallery/view/gallery.php you will see

    <!-- Pagination -->
    
     	<?php echo $pagination ?>

    All you have to do is move or copy that bit of code, to right above the following bit of code:

    <!-- Thumbnails -->
    
    	<?php foreach ( $images as $image ) : ?>

    The resulting snippet should look as follows:

    <!-- Pagination -->
    
     	<?php echo $pagination ?>
    
    	<!-- Thumbnails -->
    
    	<?php foreach ( $images as $image ) : ?>

    I apologize that I don’t have line numbers for you right now, but if you have anymore questions please feel free to ask and I’ll see if I can be more specific.

    Thread Starter Rainvur Jefferson Wilbre

    (@rainthebat)

    wow, that is just fabulous MetacomCreative, there seems to be a pretty good amount of display related features going on in those files in the ‘view’ directory, giving lots of potential for specialized configurations.

    Thank You!

    M

    (@metacomcreative)

    Rain,

    I’m glad that you were still able to find this useful. I saw the “6 months” ago, so I wasn’t sure if you were still in need of a fix, haha.

    I haven’t experimented a whole lot with NextGen, but it does seem like there are almost endless possibilities.

    Good luck!
    Ryan

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: NextGEN Gallery] Moving Navigation to top’ is closed to new replies.