Forums

Join
bbPress Support ForumsPluginsNew messages in topic at top

Info

New messages in topic at top

  1. Subj, need to display new messages in topics on top.
    Any addon or editing

    thx

  2. 1.0 apparently has a reverse post order ability built in
    http://trac.bbpress.org/ticket/825
    It's not clear how to activate it without editing the core, I will have to take a look at it.

    Added: apparently the reversal feature is also available in 0.9, it's just that changing it in topic.php requires a core edit and it might break the direct-link-to-a-post ability.

    Here is a thread with a mini-plugin to reverse the post order in 0.8 that might work also in 0.9 and 1.0
    http://bbpress.org/forums/topic/change-post-order-question

  3. plugin don't works with 1.0.1
    will try core edit

    upd1: works on 1.0.1 with 1 editing only in topic.php:
    /topic.php line 21

    $posts = get_thread( $topic_id, $page );

    change to

    $posts = get_thread( $topic_id, $page, true );

    thx _ck_!

  4. After the upgrade to 1.02, editing topic.php solution, is not available anymore.

    $posts = get_thread( $topic_id, $page );

    has been removed.

    Is any other way to reverse posts order in BBpress 1.02?

  5. Actually is on line 26 and the solution still works.

  6. You must log in to post.