On Feb 4, 7:55 pm, "AJ Mercer" <[EMAIL PROTECTED]> wrote: > is it possible in a displayPage, like for dmHTML, to make it not display the > popout menu when you are logged in?
You need to build your own ./core/tags/navajo/display.cfm and call it instead of the default (from ./www/index.cfm). Just copy the core tag into your project and change it as you need it. This is a legit mechanism for streamlining the controller as needed. The relevant code to change follows: <cfif iAdmin eq 1 or iCanCommentOnContent eq 1> <cfset request.floaterIsOnPage = true> <cfinclude template="floatMenu.cfm"> </cfif> Bear in mind that the "floater" has been ear marked for destruction for several generations... and will ultimately fall in a well and die. You will need to remove his successor once more when that refactoring is done. Hope that helps, -- geoff http://www.daemon.com.au/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-dev" 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/farcry-dev?hl=en -~----------~----~----~----~------~----~------~--~---
