Side Navigation how to hide?

  1. put the include for the menu inside the template includes.
  2. have logic to determine if the menu should show depending on which template you are including

Hi Aaron,

Thanks for reply, see what im doing right now.

In my Layout file Main.cfm, i putted my Side Navigation in IF Block.

<cfif NOT (isDefined(“request.hideSideNav”) and request.hideSideNav is true)>

<cfset recursivenav = NavVertical(parent=0, level=0)>
#recursivenav#

In my Template im using

Bad News is it is not working… :frowning:

you IF will never pass. look at it.