bbPress does allow shortcodes for security reasons, you should look at something like https://wordpress.org/extend/plugins/bbpress2-shortcode-whitelist/
To order your replies in reverse order add the following code to your themes functions.php file.
https://gist.github.com/3414353
Bingo! as soon as you said “conflicting” I knew it was the wordbooker plugin. Wordbooker integrates wordpress with Facebook.
But that for sure has to be a bug. Is it bbpress bug or Wordbookers bug? I don’t want to compromise between those two but if I have to choose I choose to have a forum.
Try this and post the link back here:
Does this now include the forum description?

-
This reply was modified 13 years, 10 months ago by
Stephen Edgar.
> Visibility: decide whether your forum is public, private or hidden.
> Public – Anyone can see these forums
> Private – Only logged in registered users can see these forums
> Hidden: Only Moderators/Admins can see these forums
https://codex.bbpress.org/getting-started-with-bbpress/#creating-your-first-forum
If you want further granular access you should use a plugin to control the access privs:
https://wordpress.org/extend/plugins/members/ or
https://wordpress.org/extend/plugins/s2member/
> Try resetting your permalinks. In your WordPress Administration
> Screens navigate to Settings > Permalinks, select a different
> permalink structure and save. Then select your preferred permalink
> structure and save again.
https://codex.bbpress.org/faq/#404
Have you had a look at BuddyPress Courseware?
It may have some of what you are trying to do already done, and a bit more 😉
https://wordpress.org/extend/plugins/buddypress-courseware/
http://buddypress.coursewa.re/
http://buddypress.coursewa.re/handbook.html
If you just want to keep rolling your own, get started with your own templates customizations here:
https://codex.bbpress.org/theme-compatibility/
For your second issue could you please create a ticket on trac https://bbpress.trac.wordpress.org/ with as much detail as you can.
For the first issue does repairing the forums fix your problem?
https://codex.bbpress.org/repair-forums
The best thing I can suggest is to create a ticket on trac https://bbpress.trac.wordpress.org/
Once/if/when the following plugin is updated to support bbPress 2.1x (it is currently broken) it should do what you are looking for:
https://wordpress.org/extend/plugins/bbpress-threaded-replies/
That’s the only option I can suggest at the moment
It prevents users from flooding your site with posts and is ‘Throttle Time’ setting in your forums WordPress Dashboard -> Settings’ -> ‘Forums’
Also have a look at this thread for more info
Slow down; you move too fast
> To fix this try resetting your permalinks. In your WordPress
> Administration Screens navigate to Settings > Permalinks, select a
> different permalink structure and save. Then select your preferred
> permalink structure and save again.
https://codex.bbpress.org/faq/
Go to your WordPress dashboard -> ‘Settings’ -> ‘Media’ and change ‘Maximum embed size’ width/height to suit your needs.
I think you may need to wait for the plugin to be updated to work with bbPress 2.1x
https://wordpress.org/support/plugin/bbpress-threaded-replies
It does seem strange, could you create a ticket/bug report on Trac with ‘if you can’ detailed reproduction steps and some screenshots would probably also help so we can look further into this please.
https://bbpress.trac.wordpress.org/
Could you create a ticket/bug report on Trac with detailed reproduction steps so we can look into this please.
https://bbpress.trac.wordpress.org/
From https://codex.bbpress.org/widgets/
Register URI: Link to your custom signup page eg. A WordPress page using the [bbp-register] shortcode.
Lost Password URI: Link to your lost-password page eg. A WordPress page using the [bbp-lost-pass] shortcode.
Try resetting your permalinks : WordPress dashboard go to Settings -> Permalinks
https://codex.bbpress.org/faq/#troubleshooting
-
This reply was modified 13 years, 10 months ago by
Stephen Edgar. Reason: Added FAQ link
I just installed bbPress to a single install of WordPress. I found the bbPress login widget. But how do I determine the register/lost password URI to set it up?
Can I just ask is bbPress compatible with WordPress 3.4.1 and Buddypress Version 1.6.1?
I’m having a nightmare installing bbpress, i’ve setup many forums before using software such as phpbb and even with all the file editing, database changes etc – it was never this difficult 🙁
I’ve followed the guides with various levels of success, sometimes I get ‘unauthorised to view this page’ sometimes I get no link to the forum page – sometimes I get a page with no forum topics.
So, just wondered if I’m wasting my time? lol
I know this is almost 7 months later, but i need some help.
Not seeing all forums created
Hi everybody, i use :
bbpress 2.1.2
wordpress 3.4.1
Situation :
Forum_1
Topic_1
Post_1
Post_2
Post_3
Question :
If i want to reply in the topic_1, i write my comment and i submit the reply. The new reply will be append on the topic_1 after Post_3.
Now i would like allow to reply to a specific post, for exemple i would like reply on Post_2, the new reply will between Post_2 and Post_3.
Can we do that natively on bbpress ? i can’t find, or i need a plugin, if need it, which one ?
I`m not sure how familiar you are with WordPress and PHP, I consider myself a novice in PHP but well-versed in WordPress. It might be a bit technical and it might be the wrong way to do things, but here is how I quickly put it together.
Open functions.php in your theme.
Add the following function to the file (within the PHP tags):
function bbp_get_user_replies( $user_id = 0 ) {
// Validate user
$user_id = bbp_get_user_id( $user_id );
if ( empty( $user_id ) )
return false;
// Query defaults
$default_query = array(
'author' => $user_id,
'show_stickies' => false,
'order' => 'DESC',
);
// Try to get the topics
$query = bbp_has_replies( $default_query );
if ( empty( $query ) )
return false;
return apply_filters( 'bbp_get_user_replies', $query, $user_id );
}
Then to list the replies just add to whatever page you want to list them:
As you can see this is basically the same code as the bbp_get_user_topics_started function, just modified to get the replies instead.
If anyone have a better solution I`d love to hear it.