Skip to:
Content
Pages
Categories
Search
Top
Bottom

Posts showing in incorrect order (newest in first place)


  • diggeridoo
    Participant

    @diggeridoo

    Hi there,
    I’ve realised that the posts within my forums are shown upside-down, showing the first in the row the newest post, breaking the chronology (the newest must appear at the bottom).
    Don’t know why this has changed… do you know where can I reverse the order?

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

  • Robin W
    Moderator

    @robin-w

    something has changed !

    Have you added any functions, or might be a plugin

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Otherwise try adding this at the bottom of your functions file

    function change_reply_order() {
    $args['order'] = 'ASC';
     return $args;
    }
    add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
    

    diggeridoo
    Participant

    @diggeridoo

    Thanks for the complete help đŸ™‚
    Yes, as you said it looks to be a conflict with a plugin. Now looking forward replace this plugin.

    Thank you!


    Robin W
    Moderator

    @robin-w

    great – glad you’re fixed !

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar