Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorheenke
    • CommentTimeApr 14th 2009
     
    Hi fellas, been searching the forum for this, but no luck :)

    My question is, if i can move the pagination control (the one that shows ex: collections>Album>File.jpg) into another php page? I wanna add this in my designs main menu. I guess its this code:
    <?php
    print ' <div id="pagination">
    <table style="width: 100%;">
    <td>'.plogger_pagination_control().'</td>
    ?>

    taken from footer.php, but when i take that code and paste on my menu.php it just shows white/blank in explorer/firefox. I know its not just that easy, but it was worth the try :P So anyone know exact what i need to change/do?

    Thanks =)
    •  
      CommentAuthorsidtheduck
    • CommentTimeApr 14th 2009
     
    That is what you need, but you need to have the include('path-to-your-Plogger/gallery.php'); line at the top of the file before your menu.php is included.

    However, the "one that shows ex: collections>Album>File.jpg" is the breadcrumbs found in the 'header.php'
    <td><?php echo generate_breadcrumb(); ?></td>
    and you still need it after including the gallery.php file.
    • CommentAuthorheenke
    • CommentTimeApr 15th 2009 edited
     
    it worked, nice :P thx =) now i just have some other errors left hehe :=)