Please see here: http://www.zenphoto.org/support/topic.php?id=2513&replies=9
Thanks.
and i have a suggest for getAllTags().
Tags in albums are separated by a space in the row "tag" in the table "albums". So when you get all tags from the albums and you add a comma, you have this
, ...
So printAllTagsAs() will print tags in blocks. you understand ?
The solution is to replace " " by a comma in getAlltags() :
$alltags = str_replace(' ',',',$alltags.$row['tags']).","; // add comma after the last entry so that we can explode to array later
See the difference beetween the 2 cloud on my gallery : http://www.gregserveur.com/zenphoto/
On the first (proposed by the zenphoto), you can't select 1 tag. you can only select a block.
On the second, (with my modification), you can select each tag
Quote:Tags in albums are separated by a space in the row "tag" in the table "albums". So when you get all tags from the albums and you add a comma, you have this
Now I see it. I just overread that detail in your first post. You should have separated the tags with commas in the first place when you enter them in the admin. Then there will be now need for hacking.