Forums

Join
bbPress Support ForumsPimp your PressShow the Reply form/box on every page

Info

Tags

Show the Reply form/box on every page

  1. By default the reply form/box only shows on the last page of a topic, if it has more than one page. If a topic has 5 pages, and you click reply on page 2, it will take u the reply form, which is located at page 5.

    I did a hack in a file to make it show on all pages.

    Open functions.bb-template.php and find

    $defaults = array(
    'h2' => '',
    'last_page_only' => true

    Replace this with

    $defaults = array(
    'h2' => '',
    'last_page_only' => false

    I’m confident that is not the best way, if someone has a better way, please leave a reply, this method is however working.

  2. Don't hack the core files or you will lose changes when you upgrade. Instead do this
    In your topic.php
    replace
    post_form();
    with
    post_form(array('last_page_only' => false));

  3. You must log in to post.