Viewing 5 replies - 1 through 5 (of 5 total)
  • For the order of child pages, edit the query on line 64 of summary_child_pages.php:

    query_posts('post_type=page&post_parent=' . $id . '&posts_per_page=-1&orderby=menu_order');

    You could also use orderby=date. Check reference pages for query_posts for more options.

    To remove the bullet point next to them, the relevant style sheet rules should have been added by the plugin. These should show up in the page source, e.g:

    .child-pages {
        list-style: none;
    }

    However, perhaps it’s being overriden by another style you have in your theme. I suggest using firebug to investigate this.

    I used the plug in and the child pages were listed in random order. I used the below fix, as described in the forum:

    For the order of child pages, edit the query on line 64 of summary_child_pages.php:

    query_posts(‘post_type=page&post_parent=’ . $id . ‘&posts_per_page=-1&orderby=menu_order’);

    I used the above fix and it worked, however, the pages are listed with the last one at the top and the first one at the bottom… how can I adjust the code to fix this?

    I found to remove the bullets I had to add the ‘li’ attribute

    .child-pages li{
        list-style: none;
    }

    @idratherbeskiing

    I used the above fix and it worked, however, the pages are listed with the last one at the top and the first one at the bottom… how can I adjust the code to fix this?

    I had a quick look at the codex for “query_posts” and it looks like you might be able to use something like:

    query_posts('post_type=page&post_parent=' . $id . '&posts_per_page=-1&orderby=menu_order&order=DESC');

    I haven’t checked it, but I something like this will work from reading the section “Combining Parameters” on the above page.

    The codex is your friend! ??

    I am also having the same problem with bullets showing up (and I don’t want them). I tried adding the “li” to the code, per a suggestion above, but it did not work. Has anyone found another solution that works?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Order of posting and bullet points’ is closed to new replies.