Is there a way to switch spaces to using the Page tree option instead of Child pages when displaying the navigation in the sidebar? I know I can set it on a space-by-space basis using the Space Tools, but we have about 60 spaces so I'd like to make the change globally if possible.
You can do this by altering the database:
UPDATE BANDANA set BANDANAVALUE='<string>page-tree</string>' where BANDANAKEY like 'sidebar.nav-type' and BANDANAVALUE like '<string>pages</string>';
Since 5.6, I believe, that is the default. But with your already created ones ... sorry, have fun clicking.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, you can do this with a plugin. Do you have any experience with plugin development? Code for setting sidebars is
bandanaManager.setValue(new ConfluenceBandanaContext(space.getKey()), "sidebar.nav-type", "page-tree");
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you need further help feel free to ask.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the response Lukas, but creating a plugin to set the sidebar navigation type seems a bit overkill. Maybe if we had a plugin of custom configs options already for our Confluence instance then this would be an simple solution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think xou can do the same in database. Just look for bandana table.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And just FYI, with a bit experience such a plugin takes about 2h to develop ;)
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.