Not signed in (Sign In)

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

    • CommentAuthorchia3
    • CommentTimeAug 4th 2008
     
    Hello!
    First, let me say I'm very impressed by the usefulness and userfriendliness of this application. It's a great piece of code :-)

    My problem: I have an album with 29 pictures, so that the album thumbnails span over 2 pages. When I run the slideshow, either from page 1 or page 2, only the pictures shown on page 1 are shown in the slideshow. So, why don't the pictures on page 2 (same album) show up in the slideshow?

    Any help appreciated - thank you in advance :-)
    •  
      CommentAuthorsidtheduck
    • CommentTimeAug 4th 2008
     
    chia3,

    Try this. Open 'plog-functions.php' and find the following code (under the plogger_init() function - around line #1227-1229):
    // we shouldn't set a limit for the slideshow
    if( $GLOBALS["plogger_mode"] == 'slideshow')
    $lim = 0;

    and change it to read:
    // we shouldn't set a limit for the slideshow
    if( $GLOBALS["plogger_mode"] == 'slideshow')
    $lim = -1;


    I think that should do it for you! :D
    • CommentAuthorchia3
    • CommentTimeAug 5th 2008
     
    Hmm, I tried that, but no difference. I also tried to set the $lim to 9999, but even that didn't make any difference. Thanks for the quick reply, anyways.

    Any other tips?
    •  
      CommentAuthorsidtheduck
    • CommentTimeAug 5th 2008
     
    Try setting the $limit to '100'. I think that should do it (up to 100 images). If you want more than 100 images, you'll have to edit the plogger_init_pictures function quite a bit (it's already been updated in the SVN for the next release, so you shouldn't have to wait that long for it either).

    Try that out and see if it solves your problem.
    Thankful People: chia3
    • CommentAuthorchia3
    • CommentTimeAug 6th 2008
     
    Thank you very much, that did the trick. :-)