I assume this is pretty standard, but on our forum site (http://nexus.universaltheosophy.com/), the bbpress “reply box” is located at the bottom of any given Topic post. So, when someone wants to reply, they need to scroll all the way down. Also, directly beneath each existing reply is a “reply button”. If someone wants to reply to an existing reply, they click this button…. but what happens is that the Topic post reloads in their browser and then they’re taken to the bottom of the Topic where the reply-box resides.
What we want, is this: when someone clicks reply, a reply-box appears directly beneath the existing reply they’re replying to (basically, how reddit works). I’ve seen at least one site that has managed to do this with some kind of customizing of bbpress, but nobody seems to want to share.
In order to see how the reply button on our site currently works, you can use our dummy-test-account to login (just please be respectful and don’t make me delete too much spam) UN: [redacted] PW: [redacted] And use this discussion to see how the reply function currently operates: http://nexus.universaltheosophy.com/groups/key-concepts-study-group/forum/topic/reincarnation/
Any help at all would be hugely appreciated. The current functionality really makes for a poor forum experience for our members.
Also, we’re currently running bbpress 2.5.10 and WordPress 4.6.1.
To add a description (it will be under the breadcrumbs) use my style plugin
https://wordpress.org/plugins/bbp-style-pack/
and go to
dashboard>settings>forum display and set item 6
to eliminate the blue box out this in your css
div.bbp-template-notice.info {
display: none;
}
but I’ll add this to the next version of style pack which is due out very shortly
WP 4.6 BBpress plugin 2.5.10
I am using some of the super BBpress code suggestions at https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/ and most work just fine ‘out of the box’ but I am not sure what I should be putting in place of ‘ my_nav_menu_profile_link’ in this one. If I put in the code as is….
// Filter wp_nav_menu() to add profile link
add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' );
function my_nav_menu_profile_link($menu) {
if (!is_user_logged_in())
return $menu;
else
$current_user = wp_get_current_user();
$user=$current_user->user_nicename ;
$profilelink = '<li><a href="/forums/users/' . $user . '/edit">Edit Profile</a></li>';
$menu = $menu . $profilelink;
return $menu;
}
I get this when trying the menu link……
Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
If you think this is a server error, please contact the webmaster.
Error 404
localhost
Apache/2.4.23 (Win32) OpenSSL/1.0.2h PHP/5.6.24
If I replace the ‘ my_nav_menu_profile_link’ with the actual link like this…..
/* Profile link in menu....................*/
// Filter wp_nav_menu() to add profile link
add_filter( 'wp_nav_menu_items', 'http://localhost/wordpress/wp-admin/profile.php' );
function http://localhost/wordpress/wp-admin/profile.php($menu) {
if (!is_user_logged_in())
return $menu;
else
$current_user = wp_get_current_user();
$user=$current_user->user_nicename ;
$profilelink = '<li><a href="/forums/users/' . $user . '/edit">Edit Profile</a></li>';
$menu = $menu . $profilelink;
return $menu;
}
I get this as soon as I go to the site…
Parse error: syntax error, unexpected ‘:’, expecting ‘(‘ in C:\xampp\htdocs\wordpress\wp-content\themes\twentytenchild\functions.php on line 49
What should I be entering and when I move to a live site will it need to be further changed?
i’m new to wordpress.
How can i put banner in top of the posts? is there any function or php file?
or how is the wordpress structure?
if you want to know site it:
http://www.saadatrent.com
http://www.parsaya.com
Hey there
we’ve WordPress site for which we’ve setup BBpress for forum section. Forum section topic threads are not included in the default search. can you please let me know how we can make the changes so we can also have BBpress forum topics as a search result on our site?
http://cathlab.com/
Thanks in advance.
Hi there,
Our staging site has the BBPress and WooCommerce plugins, but when we update the BBPress from version 2.5.8 to 2.5.10 the Forums, Topics and Replies are not showing in the Admin Dashboard. When we tried to deactivate the WooCommerce plugin, the Forums, Topics and Replies are showing. But before we do the update, even these two plugins are activated, the Forums, Topics and Replies are displaying in the Admin Dashboard.
We have the latest version of WordPress which is 4.6.1 and we are using Divi theme. Our staging site is: http://staging.edurolearning1.flywheelsites.com/.
I hope you can help us.
Thanks,
Portal
@darrenbergman93
We also do not want another log in. We want them to be able to log into their profile in our student portal and that is it. They have access to the forum aswell and no additional login or registering, as right now we pre-create their profiles, no one registers.
Like @netweb said bbPress and WordPress share user data, so as long as your student portal is compatible with WordPress it should be fine. You do not need a separate login for the forum as long as the student login, logs into your WordPress site.
We need a forum that has all the features that a forum system includes, such as:
Adding/Creating Threads by both Student and Admins. Instructors also need to be able to create them.
We do not want external links like Share to facebook and such. As this is a forum in a portal and do not want anyone but Students having access to it.
Ok, you can manually create users and assign different forum roles if need be. And you can create custom forum roles with help form a code snippet. You definitely need private forums, but I am not sure how private. Do you want private user groups for specific forums, only logged in users can see the forums, or only logged in users can see the whole site.
We do not want a profiling. We already have a profile system where the profile in wordpress is their student profile which includes their address, email, username, phone number and also their student id. This information cannot be visible to other students.
So either if this plugin gives an external profile system where it does not interact with the profile already made in the USERS area of wordpress it would work, but if it works with the USERS part of wordpress then the clickable link to view a profile, edit profile would need to be removed for our sake.
There is a php code snippet around these forums to remove the author link in replies and topics from going to their profile and instead show up in the forum as text. Removing profile links in descriptions and a widget might need another code snippet, or it could be easily avoidable by not using a widget and removing the descriptions.
bbPress doesn’t add any additional user meta fields if I remember correctly.
Removing the profiles, I haven’t looked at what code you could possibly need, but it could be possibly avoidable by redirecting any user forum profiles (if users somehow reach them) to somewhere else.
Email address is required to post using anonymous/guest posting.
In this stackoverflow topic, there is a php codesnippet/plugin you can use that might be helpful.
http://wordpress.stackexchange.com/questions/131550/how-do-i-set-up-real-anonymous-posting-in-bbpress-forums
I think what you are looking at is specifically for blog posts.
I think there is a plugin to display bbPress forum post counts there if you want that feature. I am going to try to find it right now. I think it may not be on the WordPress plugin repository.
I have a client with a request that seems simple but I am having a dilly of a time figuring it out.
They want to be able to charge users for premium posts. These posts will *not* appear at the top. Instead they will look different from other posts – bolded links, different color font – not at the users choice simply coded in by us. This will be a one time thing for a user – the users should not be able to do any other posts this way. I already set up the forum so that the client will approve all posts – he wants to be able to go in and click a button that will then style that post a different way.
I can style the sticky to do this easily and have done so on my demo but am unsure how to proceed with his request. I do have a child theme.
I know enough code to add stuff into functions and php pages. I am much better at HTML5 and CSS (can do animations).
I have tried a few things I came up with on my own but they do not work and rather than show them I would rather hear your thoughts.
Here is my demo – it is still pretty primitive… http://www.contentandsolutions.com/njywf/
I am using
Wordpress Version 4.6.1
Customizr theme using child theme. Customizr Version: 3.4.23
BBPress Plugin Version 2.5.10
Code or a plugin (even a paid for plugin) if possible. Thank you!
Hi,
If you confirm that WordPress is correctly sending out emails for other WordPress tasks, then it’s most probably one of the other plugins blocking something. Did you try to deactivate plugins like bbPress – Private Replies, bbPress – Report Content and bbPress Protected Forums ?
Pascal.
bbPress shares WordPress’ users settings, you an see an example of it for your own bbPress.org and WordPress.org profiles here:
https://bbpress.org/forums/profile/darrenbergman93/
https://profiles.wordpress.org/darrenbergman93/
When logging into bbPress it is just logging into WordPress with the same username and password so you should be good to go there also 🙂
less shouty with the title, and a little bit of patience would be great !
bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
Installed BBpress Forum plug in. cannot see it anywhere on my wordpress site. Any help would be great, John
[mod note: fixed title]
I have updated WordPress but still have the same problem. When I change my admin roles I can briefly see the BBpress options in the wp menu. But after one click they disappear form the menu…
Seems like a bug to me or a malfunction with an other plugin?
Hello, My name is Darren. I am the Team Leader of the New Eden School Student Portal Team. I have been looking to add a forum for our students into our Portal. We had a forum before but had to shut it down for some reasons i will not go into. However we now want to re-initialize our forum idea and place it into our portal. My question is this:
We need a forum that has all the features that a forum system includes, such as:
Adding/Creating Threads by both Student and Admins. Instructors also need to be able to create them.
We do not want external links like Share to facebook and such. As this is a forum in a portal and do not want anyone but Students having access to it.
We do not want a profiling. We already have a profile system where the profile in wordpress is their student profile which includes their address, email, username, phone number and also their student id. This information cannot be visible to other students.
So either if this plugin gives an external profile system where it does not interact with the profile already made in the USERS area of wordpress it would work, but if it works with the USERS part of wordpress then the clickable link to view a profile, edit profile would need to be removed for our sake.
We also do not want another log in. We want them to be able to log into their profile in our student portal and that is it. They have access to the forum aswell and no additional login or registering, as right now we pre-create their profiles, no one registers.
Let me know if the above is possible to customize in this plugin,
thanks,
-NES Portal Management Team Leader
You may need to juggle a bit, but my Private Groups plugin filters forums for specific groups
so a user belongs to a group or groups
Forums belong to a group or groups
users can see forums of the same group or groups.
https://wordpress.org/plugins/bbp-private-groups/
Post a topic on that plugins support desk if you need coding help
Thank you for your help. Unfortunately I think I have reached a dead end.
I decided to give another try. I created a new phpbb database, and a new WordPress installation, just in case I had caused some damage.
Attempting the import produced the following error. Presumably it is objecting to something in my phpbb database. I can not find ‘forum_topics_approved’ anywhere (but have little experience with MySQL).
WordPress database error: [Unknown column ‘forums.forum_topics_approved’ in ‘field list’]
SELECT convert(forums.forum_id USING “utf8mb4”) AS forum_id,convert(forums.parent_id USING “utf8mb4”) AS parent_id,convert(forums.forum_topics_approved USING “utf8mb4”) AS forum_topics_approved,convert(forums.forum_posts_approved USING “utf8mb4”) AS forum_posts_approved,convert(forums.forum_name USING “utf8mb4”) AS forum_name,convert(forums.forum_desc USING “utf8mb4”) AS forum_desc,convert(forums.left_id USING “utf8mb4”) AS left_id,convert(forums.forum_type USING “utf8mb4”) AS forum_type,convert(forums.forum_status USING “utf8mb4”) AS forum_status FROM phpbb_forums AS forums LIMIT 0, 100
No forums to convert
Starting Conversion
My comment about lack of stats was that there was no positive feedback e.g. x forums imported, which would be helpful.
I did not understand the comment “If you also view the source of the page, right click and “inspect” will also bring this up, you should see some debug code showing the SQL queries being performed during the import:”
Ok i understan how work,
i have try to import, so at that time i have import User and Discussion and forum…
But now give me that error
Errore sul database di WordPress: [Table ‘pke070112.jos_kunena_topics’ doesn’t exist]
SELECT convert(kunena_messages.id USING “utf8mb4”) AS id,convert(kunena_messages.catid USING “utf8mb4”) AS catid,convert(kunena_messages.thread USING “utf8mb4”) AS thread,convert(kunena_messages.ip USING “utf8mb4”) AS ip,convert(kunena_messages.userid USING “utf8mb4”) AS userid,convert(kunena_messages.subject USING “utf8mb4”) AS subject,convert(kunena_messages_text.message USING “utf8mb4”) AS message,convert(kunena_messages.time USING “utf8mb4”) AS time FROM rtzen_kunena_messages AS kunena_messages LEFT JOIN rtzen_kunena_messages_text AS kunena_messages_text ON kunena_messages_text.mesid = kunena_messages.id LEFT JOIN jos_kunena_topics AS kunena_topics ON kunena_messages.thread = kunena_topics.id WHERE kunena_messages.parent != 0 LIMIT 0, 100
pke070112 it’s the table of the old database,
Please can you help me?
@robkk, That would be to allow additional tags, right?
In this case it looks like tags are getting into the content that already are not allowed by default. The screen shot shows a span tag, which is not included in the bbPress allowed list in bbpress/includes/common/formatting.php.
I have also seen this happen with TinyMCE activated. It seems to be iOS users and they claim that they haven’t pasted anything, but I have not observed this for myself yet.
It does give stats as it imports, you should be something similar to:

If you also view the source of the page, right click and “inspect” will also bring this up, you should see some debug code showing the SQL queries being performed during the import:

The forums, if imported will be in the wp_posts table of your WordPress database, if you filter the posts and search the post_type column for forum, topic, or reply you should see any imported posts.
i understand what you say and do that exactly
removed al mods and use a basic pbpbb 3.1.9 database
I use for all the latest verions
-bbpress 2.6 alpha
-phpBB 3.1.9
-phpBB Converter file 5795
As i said earlier in this topic, there is a problem with the latest version of the phpbb converter https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php?rev=5795
After converting all the passwords, at the beginning converting posts or topics i there is an error.

Cool, hopefully that will fix any issues, and we switched wordpress.org/support to bbPress 2.6-alpha a couple of weeks ago 🙂
I am running phpBB 3.1.9 and bbPress 2.5.10
As I am still a relatively new WordPress user, and have never used bbPress, I installed the latest version, but I normally avoid alpha and beta software.
As this is an offline installation for learning/experimentation I guess there is no risk so will try 2.6
I imported a sql backup of my database to my local system and phpMyAdmin shows this with 6 forums with prefix “phpbb_”
Database Server localhost
Database Name iabi1038_phpb1
Database User <myuser>
Table Prefix phpbb_
This chugs along, with no obvious errors, (but no real report of what it did) – although the “No forums to convert” error no longer appears.
Unfortunately I cannot seem to find the Forum in my WordPress installation.