Not signed in (Sign In)

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

    • CommentAuthorHennu
    • CommentTimeMar 16th 2009 edited
     
    When i turned off Intermediate Picture generation in Options menu, then I could not see the big picture inside the album.
    However, when I clicked on the small box that should have contained Intermediate Picture the original picture would open and work fine.
    ( using modified Lucid theme - Hennu's Lucid theme )

    My solution, that is propably not a good on, is following:

    Open picture.php inside the lucid theme folder and replace this:
    $imgtag = '<img class="photos-large" src="'.plogger_get_picture_thumb(THUMB_LARGE).'" title="'.$capt.'" alt="'.$capt.'" />';
    with this:
    $imgtag = '<img class="photos-large" src="'.plogger_get_source_picture_url().'" title="'.$capt.'" alt="'.$capt.'" />';

    Note that "Allow Full Picture Access:" must be Enabled!

    Also, if you want to use slideshow, then you must change this line from slideshow.php:
    echo 's = new slide("'.plogger_get_picture_thumb(THUMB_LARGE).'",
    with this:
    echo 's = new slide("'.plogger_get_source_picture_url().'",

    Hope I was helpful ..