Hi all,
I would like to know, how I could get the full list of albums and sub-albums in unordered list format. It will be great if unordered list prints in nested form like following example:
|--Folder 1
|--Folder 2
| |--Sub-Folder 1
| |--Sub-Folder 2
|
|--Folder 3
Any help regarding that query will be highly appreciated.
Comments
Warning: Missing argument 1 for printAlbumMenu(), called in C:\xampp\htdocs\urbanmaze\portfolio\themes\stopdesign\album.php on line 18 and defined in C:\xampp\htdocs\urbanmaze\portfolio\zp-core\plugins\print_album_menu.php on line 40
• Architecture
o Landscapes
• Characters
• Landscapes
• Nature
• Scenes
• Windows
How can I get rid of it? In addition, is it possible to get thumbnails along with menu list?
No, If you want thumbs you have to customize it.
I am using this code:
<?php printAlbumMenuList("list-sub","showsubs=0"); ?>
Why I do not see subalbums ?
Please write me exactly what I have to change. Your documentation is hard to understand for me I am do not know php.
Regards
http://www.zenphoto.org/2008/04/how-to-read-the-zenphoto-functions-guide/
Generally, you should learn at least php basics if you are trying to modify a theme.
In short:
First, the second parameter is not set correctly.
Second, $showsubs is the 8th parameter. That means that you have to set the six between the 1st and the 8th, too.
`<?php printAlbumMenu("list","count","css_id=''","css_class_topactive = ''","css_class = ''","css_class_active = ''","indexname = Galleriiia","showsubs = true"); ?>`
and does not working w subalbums
My Zenphoto is 1.26
Regards
`<?php printAlbumMenu("list",null,null,null,null,null,null,true); ?>`
Thanks Acrylian