I'd also like to know if there is somewhere in the settings where we can set the action.childrenNotShown value to true or false. In my case, I want to set it to false so that the parent pages in a space do NOT display children pages by default.
Are you looking for the Children Display macro?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
On the page layout I found the following code snippet in the view section. How to make the condition (#if (!$action.childrenNotShown)) to true in order to render children?
#if (!$action.childrenNotShown)
#renderChildren()
#end
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this will change display children (so if not shown then show them) I think it must be disabled by default
#if ($action.childrenNotShown)
#renderChildren()
#end
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.