![]() |
|
How do I choose an album Thumb? - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: How do I choose an album Thumb? (/thread-780.html) |
How do I choose an album Thumb? - zimen - 2006-09-02 Hello, I looked around here but can't find an answer. How can i choose which image to use as a thumbnail for an album? How does zen select it? randomly? How do I choose an album Thumb? - zimen - 2006-09-02 Found thank you! sorry How do I choose an album Thumb? - jayray999 - 2006-09-04 Can you post the solution? How do I choose an album Thumb? - jayray999 - 2006-09-06 For anyone else who is wondering this can be set in the Admin Panel >> Edit How do I choose an album Thumb? - trehug - 2007-02-15 hi - can you have a thumbnail for your album that is NOT one of the pictures inside that album. (or any other album!). what i would like is to have the album thumbs be seperate thumbs that i design to look cool - but they would not be part of the picture set that makes up the album - ya know what i mean? any advice would be appreciated! thanks a lot, and i'm loving zenphoto so far (2 days into it). great work you guys!! How do I choose an album Thumb? - trisweb - 2007-02-15 Hmmm... it's technically possible, yes. We need a 'hide image' from an album feature I think, that would take care of it in a rough way... How do I choose an album Thumb? - Dragonfly - 2007-02-18 And is it not easy to simply add a "thumb" directory where we can store all our custom thumbnails ? How do I choose an album Thumb? - trisweb - 2007-02-19 It may be easy to select in some way from any album, including a hidden 'thumb' album if you desire. I think that would allow for more useful combinations beyond just this one need. How do I choose an album Thumb? - BertSimons - 2007-06-18 Hi I just discovered Zenphoto last week (I used to pixelpost before) and really!! like it, making my gfs website now with it and when she asked to have custom thumbs i found this tread... how i did it: I upload a image to the album called logo.jpg then the changed printImageThumb function in template functions: function printImageThumb($alt, $class=NULL, $id=NULL) { } else { http://www.bertsimons.nl/site/nl/vrij_werk for example(the little plant is logo image) How do I choose an album Thumb? - BertSimons - 2007-06-18 and off course also in the printDefaultSizedImage function otherwise it will show up browsing through the image pages function printDefaultSizedImage($alt, $class=NULL, $id=NULL) { if (getImageTitle() == "logo") { }
echo "";
} How do I choose an album Thumb? - BertSimons - 2007-06-18 with above the logo image didn't show up but a blank still did. what i do is move the logo image to the last position in an album by sorting and by changing the getNextImage Url like this instead of sdhowing the blank page it goes to the first image in the album function getNextImageURL() { if ($nextimg->name == "logo.jpg") { else { |