• Resolved OSCOWP

    (@oscowordpress1)


    Hi guys!

    Is there any option to move the reply box up instead of being down after all the post?

    If there is any css way, do you know how to do it? Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Robin W

    (@robin-w)

    not with css, but can be done by using templates

    find
    wp-content/plugins/bbpress/templates/default/bbpress/content-single-topic.php

    transfer this to your pc and edit

    cut line 51

    <?php bbp_get_template_part( 'form', 'reply' ); ?>

    and paste it below line 23

    <?php do_action( 'bbp_template_before_single_topic' ); ?>

    to get

    <?php do_action( 'bbp_template_before_single_topic' ); ?>
    <?php bbp_get_template_part( 'form', 'reply' ); ?>

    and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/content-single-topic.php

    bbPress will now use this template instead of the original

    Thread Starter OSCOWP

    (@oscowordpress1)

    thanks!!

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

The topic ‘Move reply box up’ is closed to new replies.