Navigate to the 'Portfolio' section to see the Plogger integration. The site was built using Wordpress and Plogger manages the image galleries. I also integrated the lightbox javascript libraries for the full size image/slideshow.
Let me know what you think and of course I'll be happy to share any of the modifications I made.
I like the lightbox script very much, but I'm not especially fond of the 'slow sliding' version. Other than that it looks very good and very clean. The arrows for next/previous are also very nice.
Did you make these photogaphs with a 6x6 camera or did you 'just' crop them to be square? Doesn't matter really, I'm just curious.
Yeah, cool mod Brian. I'm also a bit turned off by the new lightbox "opening" animation. It looks great, but at some point you just want to see the damn picture! =)
Also, nice site overall. Clean and simple just the way I like it. Plogger is the perfect fit.
Yeah, we are working on sort order issues and the newest build currently allows you to specify sort order on the album, collection, and picture levels. You can't currently pick the order outright, unless you use alphabetical sort and name the images accordingly before upload.
billbody - what part are you having trouble with? it's kind of hard to explain in post here.
here's the summary...essentially, when rendering an album you need to replace the code that would like to the details page for the photo with code that initializes the lightbox for the image. you'll need all the files from the lightbox site and you'll need to add the references to all the script(js) and css files in the header (look for $inHead = <<<EOT in the gallery.php file. then you need to find the location in the gallery.php file where the album is being rendered and find the part where each thumbnail is rendered...here's the line from the original gallery.php (row 422 in the file)
and here's the line from my file $output .= '<li class="thumbnail"><div class="tag"><a href="' . generate_thumb($row['path'], $row['id'], 'large') . '" rel="lightbox[cur]" title="' . $row["caption"] . ' | ' . $albumNameRow["name"] . '">' . $imgtag . "</a><br />";
there are several differences here but the most important is the rel attribute which causes the lightbox to execute when that link is clicked on (the link would be the thumbnail of the photo).
those are the basics...let me know if you need any help. i'll try to put together a quick tutorial but i've got a lot going on right now so it might take a while.
Thanks for the explanation, I had used light box with in the pass, but with ploger I was just lost in where exactly insert the code. I play a little just for fun, coz now the gallery is more than 600 pictures I think lighbox will increase a lot the load time. Again thanks for the reply
synthflut - thanks for your comments (and sorry it took so long to get back to you)!
to name the pics i use the caption field in the album manager - it will show up under the thumbnail in the album view if you enter a value for it. you can edit the caption under the actions section when your'e in teh album view in the plogger admin app. where are you seeing the file name that you'd like to hide? i was looking in the demo gallery to remind myself what happens and the only file name i see is when you have enabled the option to 'allow downloads'.
this is the section of the gallery.php file in question...the last line is what outputs the filename as part of the checkbox control. you could change that to something else (the caption) or turn off the option alltogether.
if ($config["allow_dl"]) $output .= '<input type="checkbox" name="checked[]" value="'.$row["id"].'" />';
If you want to get rid of the image name in the breadcrum, this is how i did mine to show caption (if exist), otherwise, show the filename. This is somewhere at line 741 of gallery.php
// original code below // $picture_name = basename($row["path"]);
You can also change that code to show all of the caption or a different part of it. I have chosen to just show the whole caption, since I'm always keeping those short and keeping additional information in the description. I never want it to show the file name. Mine looks like this:
$picture_name = $row["caption"];
If the caption is empty then it will just show nothing.
You could also modify the previous code bit to show more characters in the caption, just by changing the 15 in the last part to a number of your choice.