Received the BBPress Warning Message below after updating software to WordPress 4.7.0:
Warning: ksort() expects parameter 1 to be array, object given in /home/content/a2pnexwpnas01_data03/00/3444600/html/wp-content/plugins/bbpress/includes/core/template-functions.php on line 316
Warning: Cannot modify header information – headers already sent by (output started at /home/content/a2pnexwpnas01_data03/00/3444600/html/wp-content/plugins/bbpress/includes/core/template-functions.php:316) in /home/content/a2pnexwpnas01_data03/00/3444600/html/wp-includes/pluggable.php on line 1179
I would like to suggest DevTeam to add some kind of ordering for Topics. It could be a General Settings Option (set order for Forums), or even better, just add an “Order” field for Topics, the same way they are for ordering Forums. I would like to have my Topics in a fixed order… Any light on?
Hi,
I have two main forum topics and within them four and three sub-topics respectively. On the main forum page linkit shows the fresness in minutes/hours and days since someone posted in one of the sub-topics.
Problem: It does not seem to recognize when someone has posted “Funktionale Sicherheit” (below “Experts forum) in the freshness date. It does though recognize a new post for e.g. “Feature requests”.
What can i do to make this work for the freshness of all sub-topics on the main forum page?
(Also, what plugin do you recommend using to make sure there is no caching for just the forum pages on my website?)
Hello,
i use WP 4.6.1 and BBpress 2.5.11. I would like to move the Date / Time in Topics (over the Avatar) down under Mentions, like its here in the bbpress forum done?
Thanks
Regards
Sally
How to open topic in new tab (add attribute target=’_blank’ in all topic)?
Please help me.
Thank you.
WP 6.4.1
BBP 2.5.12
TwentyThirteen-Child
The problem page
at NeighborsNation.org
Strategic Morality › Forums › PTLJ Derivatives Discussion
Strategic Morality is the front page which previously had a link to this forum. I deleted the link, but it still shows. And even if I hadn’t I wouldn’t want it prefixing the name of the forum.
I have just updated to WordPress version 4.7 and bbPress version 2.5.12. I am a web developer creating a site for a client, so the work is only locally on my machine; however, I’ve added the appropriate function to the filter ‘bbp_verify_nonce_request_url’ so that it should be working appropriately (I had to do this to fix the problem that led to this new one). Now, every time I try to post a new topic through the front end (rather than via the WordPress dashboard), the above error appears (“ERROR: Your topic needs a title.”) despite the fact that I have submitted a title. Any help would be appreciated!

Hi,
If I copy/paste html content to topic content, all html tag appears in text, all quotes are converted to french quotes and content can overflow
(link to full image)
I try this below but It doens’t change anything !
remove_filter( 'bbp_get_reply_content', 'wptexturize' , 3);
remove_filter( 'bbp_get_topic_content', 'wptexturize', 3);
I remove ALL plugins and I erase functions.php !
I also try this :
function bbp_tinymce_paste_plain_text( $plugins = array() ) {
$plugins[] = 'paste';
return $plugins;
}
add_filter( 'bbp_get_tiny_mce_plugins', 'bbp_tinymce_paste_plain_text' );
even if I want to permit copy/paste of (filtered) html, just to try, but it doesn’t make any change.
Do you have an idea of what happens?
Thanks.
I have the latest 4.7 version of WordPress and installed the latest bbPress plugin (updated 4 days ago).
When I click on Forums->All forums, in the WP Dashboard, it shows me a full white blank page. Upon typing website.com/forums, it shows a blank page. The newly created forum link website.com/forums/forum/forum is also completely blank. I’ve tried this on two themes – Twenty Sixteen and Twenty Seventeen. Both showed blank page.
I tried creating a new page and pasting
but that gave me the following code as the result:
{{ partial “head.html” . }}
{{ partial “header.html” . }} {{ partial “sidebar.html” . }} {{ partial “post/header-cover.html” . }}
{{ $paginator := .Paginate (where .Data.Pages “Type” “post”) }} {{ range $paginator.Pages }} {{ .Render “summary” }} {{ end }} {{ partial “pagination.html” . }}
{{ partial “footer.html” . }}
{{ partial “foot.html” . }}
Hi,
First, a quick description of the issue:
When using a bbPress Login Widget in combination with Jetpack and its Protect module activated, logging in via the widget will
1. redirect the user to a stand-alone math puzzle page which in turn (whether the puzzle was solved or failed) will
2. redirect to the normal wp-login.php page where the user will have to
3. fill out login credentials and solve another math puzzle again (!) and after submission, the user is
4. redirected to the dashboard instead of back to the original forum page.
So, besides the inconvenience of having to pass the same login credentials twice and solve two different math puzzles, the user will find himself searching for the page he came from, which defeats the whole idea of the login widget…
I found a way to make Jetpack Protect and the bbPress Login Widget work together (by allowing the math puzzle to be inserted directly into the login form in the sidebar) but looking for users to test it in different circumstances like hosting environments, caching plugins etc.
The pull request can be found on https://github.com/Automattic/jetpack/pull/5647
The fix is this:
Open the Jetpack file modules/protect.php for editing (can be done in the WordPress plugin editor) and change:
1. line 53 from
add_action( 'login_init', array ( $this, 'check_use_math' ) );
to
add_action( 'login_form', array ( $this, 'check_use_math' ) );
2. line 61 from
add_action( 'login_head', array ( $this, 'check_login_ability' ) );
to
add_action( 'login_form', array ( $this, 'check_login_ability' ), 0 );
(notice the added “,0” there at the end too!)
Next Save, activate Jetpack’s Protect module and add the bbPress Login Widget to your forum sidebar. Then visit your site in an anonymous browser window and test logging in via the widget.
Please share your experiences. Thanks !