![]() |
|
show latest album only - 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: show latest album only (/thread-493.html) Pages:
1
2
|
show latest album only - antoxa - 2006-08-25 here is the small addon to the hack to count images function count_images($id) { show latest album only - bbish007 - 2006-11-19 @antoxa, how would you integrate your count_images function into your show_latest_album function? I would also like to display the number of images for each of the latest albums underneath. show latest album only - max - 2006-12-03 antoxa, which file in your theme do you place this: "show_latest_album($number)" and where in that file do you place it? Thanks show latest album only - trisweb - 2006-12-05 That is truly a hack. Here's a better version... `function count_images($id) { $result = mysql_query("SELECT count(*) FROM ". prefix("images") ." WHERE albumid = $id"); return mysql_result($result, 1); }` show latest album only - wilsul - 2008-03-24 I used the following maybe it helps
show latest album only - wilsul - 2008-03-24 ` show latest album only - wilsul - 2008-10-25 Is there a possibility to show latest albums using RSS? At present it only shown last images from last posted album. show latest album only - acrylian - 2008-10-25 The feed shows the latest images from the whole gallery not only from the latest album, but on the album/image page it shows only the ones of that album. It is not possible to show the latest albums with the feed unless you want to do some coding. You would have to create your own feed using the image_album_statistics plugin for example. |