Forums

Join
bbPress Support ForumsInstallationChange or remove text "Please continue discussion on the forum"

Info

Change or remove text "Please continue discussion on the forum"

  1. I noticed that on my WordPress page below every last a line is added with the following text:

    "Please continue discussion on the forum"

    How do I change or remove this line?

  2. bbPress doesn't touch WordPress by default, so you must be running some plugin that adds that

  3. Its coming from the plugin WordPress-bbPress syncronization

    http://bbpress.org/plugins/topic/wordpress-bbpress-syncronization/

  4. Thank DKB. To disable that line, go to line 1017 in the WordPress-side plugin file wpbb-sync.php and comment out (put \ before each line):

    $comments[count($comments)-1]->comment_content .= '<br/><p class="wpbb_continue_discussion">'.
    __('Please continue discussion on the forum: ', 'wpbb-sync')."<a href='$link'> link</a></p>";

    You can also just change the text there too. Someone tell these guys about array_push() ?

  5. You must log in to post.