> I am wanting to hide any admin aspects > +++[ ] <<tiddler AdminStuff>> > ===
> I do not understand how it is hiding the AdminStuff tiddler. Can someone > please clarify? Elise's menu uses a little trick to "hide" the admin stuff behind an invisible 'hotspot'. She uses my NestedSlidersPlugin syntax to create a slider that uses a single space character as the label to open/close the slider: +++[ ]<<tiddler AdminStuff>>=== Because the link just a single space, you have to know where it is to find it and click it. Of course, this doesn't prevent others from opening the admin stuff, but it makes it unlikely that they will randomly click on it. Alternatively, if you install my CoreTweaks http://www.TiddlyTools.com/#CoreTweaks Then you can use an "evaluated parameter" to perform *conditional* transclusion, like this: <<tiddler AdminStuff if: {{config.options.txtUserName="SomeAdminName"}}>> Support for the if:{{...}} syntax is added by CoreTweaks. In the above example, the AdminStuff tiddler will only be embedded in the output if the current username is "SomeAdminName". For all other usernames, the admin content is *not rendered at all*. enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios ---- TiddlyTools needs YOUR financial support... Help ME to continue to help YOU... make a generous donation today: http://www.TiddlyTools.com/#Donations Professional TiddlyWiki Consulting Services... Analysis, Design, and Custom Solutions: http://www.TiddlyTools.com/#Contact -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

