ZenphotoCMS Forum
tag cloud on all pages except home - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: Themes (https://forum.zenphoto.org/forum-5.html)
+--- Thread: tag cloud on all pages except home (/thread-5992.html)



tag cloud on all pages except home - mercury66 - 2009-10-14

Hello,

Sorry, I'm a bit new to this - any chance some pointers on how to have the tag cloud function 'printAllTagsAs' in my sidebar on everything bar the homepage?

I'm thinking;

'.. if(function_exists("printAllTagsAs")) {

if($_zp_gallery_page != "home.php") (stuck here)
} else {
echo printAllTagsAs("cloud", "", "abc", FALSE, TRUE, 10, 50, 0, NULL); }

Any pointers appreciated...

Thx,
E




tag cloud on all pages except home - acrylian - 2009-10-14

The function existance check is not necessary as that is a standard template function. The "home page" is "index.php".




tag cloud on all pages except home - mercury66 - 2009-10-14

Hi Acrylian,

Ok, check removed.
What would be the best way to go about writing the part of the function to exclude the cloud from index.php?
How do I printAllTagsAs 'false'?

Thx,
E




tag cloud on all pages except home - acrylian - 2009-10-14

if($_zp_gallery_page != "index.php") { } should work.