Ladies and gentlemen ... Here it is !
Fades on thumbnails, EXIF data, slideshow, reflection, random picture, it's all there !
This is the result of much work from me and Craig, we hope you enjoy it !
You can download the theme from the wiki:
http://www.zenphoto.org:8080/confluence/download/attachments/333/thinkdreams-1.0.zip?version=1Or you can see it in action there:
http://pics.lostocean.net/There are a few important nodes in the README.txt.
Please submit any bugs here.
(PS: I have another one in the oven, stay tuned !)
Comments
Warning: fgetc(): supplied argument is not a valid stream resource in /home/.chat/skwid/pics.lostocean.net/themes/thinkdreams/exif.inc.php on line 504, I have messed with that exif library.. should be an easy fix.
and about a hunderd other ones..
Otherwise.. I love the work you guys have done with the theme.. very good work.. I love the way themes are lookin now.
I just installed it with out errors
http://beta.chilifrei.net/thinkdreams/
but that is because of the custom image sizes for themes were added in version 1.0.2
Thanks for the collaboration with me on this skwid. You've been great to work with.
It should be fixed now, and thanks for letting me know about the version conflict.
I put "http://www.monday-music-club.de/wordpress/zenphoto/" as my url in. Wrong? Any Hints? Apart from that, it´s very nice work - thanks a lot
http:/www.monday-music-club.de
I'm really not sure about your problem .. it's really awkward. Does it work fine with other themes ?
Are you using the phpEXIFRW library (contained within the .inc.php file within the theme) or the built-in php EXIF libraries from your server?
Another question would be does your ISP (or your server) have the EXIF support compiled (if you're using the built-in EXIF libraries.
I also know that Skwid had some trouble with the pathing of the statement:
$er = new phpExifRW("../" . getFullImageURL());
Skwid - any comments?
You probably want to keep the getFullImageURL in there, that way if you ever change your URL, you won't have to modify the code.
Glad you like the theme.
Thinkdreams.
1. ZenPhoto works with other themes.
2. I would definetly prefer to use your theme!
3. I didn´t understand Skwids last hint. Sorry for not beeing Pro enough...
4. How do i otherwise disable the exif comments?
Thank you all!
bug: you're putting an F in front of the ISO rating, maybe put an ISO instead?
thoughts: focal length and shutter speed are usually more important than ISO to most people, as most who have shot for a while can tell what ISO it was shot in anyhow
In response to your query, the line you are looking for is in the thinkdreams-functions.php file, at about line 11. If you note above, the line reads:
$er = new phpExifRW("../" . getFullImageURL());
If you modify it to read:
$er = new phpExifRW("." . getFullImageURL());
instead, it should work, depending upon how deep in your directory structure you are.
You can disable the exif entirely by removing this line from the image.php file in the theme:
<?php $exif = getExif(); ?>
and the div located just below with class="exifdata". That way the EXIF data won't display at all.
Thanks for your comments. Actually, looking at the code, I see that both the focal length and the ISO display have an "f" in front of them, so I will make sure to change that.
And so you know, you can customize what you want to display by reviewing the exif.inc.php file to see what it captures, and then adding in your own custom lines for EXIF metadata for what you want to see. To do this, you'll need to modify the getExif function in the thinkdreams-functions.php and also add a line in the image.php file to include the display of the data you collect. Skwid and I can help you further if you need it.
Thinkdreams
Thanks!
Hell of a good time here in Germany because of the soccer-worldcup. 35 Nations around - over 4 million visitors - streets are very colourful.
P.S. Marburg is just 200 miles away... Very nice university-town.
You should be able to style that just like anything else. This call:
<?php
$randomImage = getRandomImages();
$randomImageURL = getURL($randomImage);
print "<center>getTitle()."'><img src='".$randomImage->getSizedImage('120')."' alt='".$randomImage->getTitle()."'></center>";
?>
If you want, you can add style information into the above line.
Thinkdreams
This is what I have:
<?php
$randomImage = getRandomImage();
$randomImageURL = getURL($randomImage);
echo 'getTitle().'"><img src="'.$randomImage->getCustomImage(null, 230, null, 210, 60, null, null).'" alt="'.$randomImage->getTitle().'" id="random" class="reflect" />';
?>
You can change the class and/ or the id and do whatever you want in the css.
Parse error: parse error, unexpected T_STRING in /home/dakseno/public_html/gallery/themes/stopdesign/index.php on line 90
TYVM.
That error you got (i know you already fixed it) usually means a syntax error. I usually find i'm missing a quote or ; somewhere in the code.
And thanks for the update Skwid on the syntax of my lines. I'm never sure about that old netscape <center> tag.