We've just installed Confluence 5.0 and we are using the Global Look and Feel for most spaces.
If a home page has a lot of children, the sidebar shows just a few for instance 4. If you want to see more children you have to expand the option "5 more children".
How can I increse the number of children to 8 (or any other number) that is shown when viewing the homepage?
The same applies for child pages with more then a few children.
The following javascript (jQuery) statements will show all the children and hide the link that says "x more children":
AJS.$('ul.more-children').show(); AJS.$('a.more-children-link').hide();
How you embed this in your pages is up to you. Ideally you would want this on every page, so maybe the Custom HTML option in the Confluence Admin screens would be the best option.
This was very helpfull. THX.
I've implemented the following in the Custom HTML option , at end of the body:
<script type="text/javascript">
AJS.$('ul.more-children').show();
AJS.$('a.more-children-link').hide();
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should really make the sure the elements you want to modify have been loaded before executing the show/hide statements. Wrapping those lines with the following code will do the trick:
AJS.toInit(function(){ <your code here> });
Reference: https://developer.atlassian.com/display/CONFDEV/Confluence+UI+Guidelines
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One quick solution - switch to the Documentation theme. It will show all child pages by default.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I know, but using the Documentation theme is not wat we want.
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.