Not signed in (Sign In)

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

    • CommentAuthorfloriske.nl
    • CommentTimeSep 20th 2010 edited
     
    I'm working on integrating Plogger into my new site design and a personal theme with it.

    I would like to integrate the "picture" part into the same page as the album thumbnails, here's an exemple:

    "http://www.floriske.nl/index.php?level=album&id=1

    Is this possible without having to recode the entire script (I only have a tiny bit of php knowledge)?

    Thx in advance!
  1.  
    I figured that with php only the page would constantly have to refresh.

    So I'm working on integrating Galleriffic on the album page now.

    Progress can be found on the link I posted earlier
    • CommentAuthorfloriske.nl
    • CommentTimeSep 21st 2010 edited
     
    Running into a problem here:

    While integrating Galleriffic into plogger I have to remove the thumbnail limit from the "album" level.

    At this moment I do this in the plog-functions file by changing

    // We shouldn't set a limit for the slideshow
    if ($GLOBALS['plogger_mode'] == 'slideshow') {
    $lim = -1;
    } else {
    $lim = $config['thumb_num'];
    }


    to

    // We shouldn't set a limit for the slideshow
    if ($GLOBALS['plogger_mode'] == 'slideshow') {
    $lim = -1;
    } else if ($GLOBALS['plogger_level'] == 'album') {
    $lim = -1;
    } else {
    $lim = $config['thumb_num'];
    }


    Is it possible to move this to the "theme_functions" file from my theme somehow? I'd rather leave the original plogger files alone