I'd like to have access to tags as admin to "edit in place" on the front end of zenphoto, but don't want users to see the tags. Is there a way to do this? It's convenient to use edit in place for me, but I would prefer the public not see them. Thanks
Comments
You can make a test on `if (zp_loggedin()) {` to see if an administrator is logged in. condition the tag display on this.
`.taglist ul {display: none;}
.taglist li {display: none;}
.taglist .tags_title {display: none;}`
You can either edit the existing elements in the .CSS file for your current theme, or just add the above code to the end of that file. I'm not certain, but I think an up side to this route would be that search engines would still be able to index the tags without them being displayed to a non-admin user. The down side is, if someone has CSS disabled in their browser the tags will still be displayed. I think this is a rarity nowadays, however.