These errors are as you say not bbpress errors, but ones related to a different plugin.
You will need to post in
https://wordpress.org/support/plugin/follow-bbpress/
although with on 10 users and no update for 4 years, I suspect it is not actively suppprted
bbpress just uses wordpress registration, so it is likely that no emails are working.
Use the test in that plugin I sent to see if they are leaving your site
I suspect you are using one of the new FSE themes, so you need a fix to work with bbpress.
install
bbp style pack
once activated, navigate to
dashboard>settings>bbp style pack, and you should see the first tab called ‘Theme Support’ – if you don’t see this, come back.
In that tab, select
Enable Theme Support
and save
The forums should then display
Is there any way to change the BBPRESS Topics and Posts default menu listing to show an icon/image instead ?
I have seen a couple of BBPRESS forums (https://wordpress.org/support/view/all-topics/) that achieve this, but no idea how ?
Thanks
Wordpress: 6.4.3
bbPress: 2.6.9
Our site uses bbPress forums with a fairly large amount of traffic. We use Akismet for spam protection and it works reasonably well. The only issue is that a topic’s last active time updates even if the submitted comment is detected as spam. As a result, some old topics that have had spam comments posted into them, invariably find their way to the top of the forum, with no (visible) new content inside, which is annoying. Due to the size of the forum and the amount of traffic, retriggering the last active time calculation is somewhat unfeasible. My question is, is there a way to hook into bbPress internal functions and just prevent the $last_active_time from updating if the reply is already detected as spam?
ok, not much i can do without seeing it, but it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Health Check & Troubleshooting
Then come back
Hi there,
Forum replies are displaying with the incorrect timestamp. All replies to a topic are shown with the timestamp for when the topic was created, rather than when the actual comment was made.
I have the bbp style pack plugin, but can’t see a way to fix this here.
Wordpress – Current version: 6.4.3
BBpress – Version 2.6.9
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Health Check & Troubleshooting
Then come back
Thanks – those are deprecation errors from buddypress not bbpress.
I’d suggest you add
BP Classic
and see if that fixes.
If not, raise the issue in
https://buddypress.org/support/
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Health Check & Troubleshooting
Then come back
Okay this was a quick test.
I deactivated all my plugins accept for bbpress and still ‘Forums’ wasn’t shown in the left navigation bar. I reinstalled wordpress (6.4.3) but still nothing. So I don’t know what is going on, but I think bbpress isn’t compatible with this WP version or something…
you are using the divi theme
1. I’d suggest you add
bbp style pack
once activated go to
dashboard>settings>bbp style pack>theme support and you’ll see some useful info on serach and profiles
2. it looks like the sub pages are using a different divi template.
this link might help
https://divi.help/threads/bbpress.11376/ or post on that support group or raise with Divi?
I’ve spent a lot of time preparing my website for launch, but I’ve encountered a few roadblocks that I can’t seem to overcome. Any help would be greatly appreciated.
Forum URL: https://HeresOurSquirrel.com
Issues:
#1: Sometimes when I sign on, it fails and suggests the page is cached. However, I am not using any caching app.
#2: When registering… (I am using the Ultimate Members plugin — is there any other way to handle this?)
2a) emails aren’t being sent
2b) role isn’t being set (they’re participants, but the role isn’t being set to contributor)
2c) no users are being displayed under the “membership” menu item
#3: When signing on as the admin (“TheSquirrel”) I can’t get to the dashboard… when entering “https://www.heresoursquirrel.com/wp-admin” in the address bar and clicking enter, it just returns to the Forum.
I created two test accounts; One participant, and one keyholder, so if you would like to sign on as either, please DM me and I will provide the sign-on credentials.
Any other feedback would be greatly appreciated.
WordPress Current version: 6.4.3
bbPress Version 2.6.9
Thank you in advance!!
install
bbp style pack
once activated, navigate to
dashboard>settings>bbp style pack, and you should see the first tab called ‘Theme Support’ – if you don’t see this, come back.
In that tab, select
Enable Theme Support
and save
The forums should then display
You may be using one of the new FSE themes, so you need a fix to work with bbpress.
install
bbp style pack
once activated, navigate to
dashboard>settings>bbp style pack, and you should see the first tab called ‘Theme Support’ – if you don’t see this, come back.
In that tab, select
Enable Theme Support
and save
The forums should then display
If not, come back
That work you for you? I was trying to post the code snippets link, but maybe it wouldn’t go through. You can find that plugin on WordPress plugins
Thanks for the feedback, @robin-w.
I noticed the anchor element with the class “bbp-glance-users” (from bbpress/includes/admin/metaboxes.php), which appears in the dashboard_right_now/”At a Glance” widget, is exclusively created by the bbPress plugin through the ‘dashboard_glance_items’ WordPress hook. For a multisite, the Users count is coming from the entire network.
I’ve traced the Users count number back to this function (from bbpress/includes/core/abstraction.php):
function bbp_get_total_users() {
$bbp_db = bbp_db();
$count = $bbp_db->get_var( “SELECT COUNT(ID) as c FROM {$bbp_db->users} WHERE user_status = ‘0’” );
// Filter & return
return (int) apply_filters( ‘bbp_get_total_users’, (int) $count );
}
And I was wondering if this could be updated to check if the site is a multisite and then select the Users based on the individual site ID.
Thanks,
Matthew Huntley
this is WordPress related not bbpress, suggest you post to WordPress support
Hi bbPress Folks,
I currently have a WordPress multisite installation with several individual sites. My WordPress version is 5.9.1 and the bbPress version is 2.6.9.
On any given individual site’s WP Dashboard, in the “dashboard_right_now”/”At a Glance” section, the number of users shown is reflective of the total number of users on the entire multisite network, as opposed to the total number of User on the individual site.
When it comes to multisite installations, can the output logic for this Users number be updated to reflect the number of Users for an individual site instead of the entire multisite network?
Thanks very much,
Matthew Huntley
Bonjour,
Je dois transférer un forum bbpress de l’ancien site au nouveau site.
Dans l’ancien site, je n’ai pas les champs forum/sujets/réponses dans le dashboard WordPress, rien qui puisse m’amener dans les paramètres de bbpress (même en passant par la section extension, pas de lien réglage ou paramètre sur bbpress).
J’ai essayé un export/import par csv ça ne fonctionne pas mon forum reste vide sur le nouveau site.
J’ai essayé via le ftp idem.
Comment je peux faire pour récupérer les données du forum et les transférer dans le nouveau ?
En vous remerciant pour votre aide.
Hi,
My theme is creating a featured image on the Topics which I can’t seem to change so I just have a large grey blob square at the top of every topic.
Introduce Yourself
I tried multiple default image wordpress themes and none of them worked.
I can’t add code to display: none because then it takes away the featured posts from the blog section.
Help?
I’ve read that WordPress’s new FSE themes such a Twenty Twenty Four can be an issue with bbPress because bbPress is so out of date (hasn’t been updated in over 2 years, which is very concerning).
However, I am VERY reluctant to change themes. We JUST went through a lot of time and work to rebuild the site after migrating from the old host to WordPress.com because the old custom theme was not compatible with Jetpack. I chose Twenty Twenty-Four because I assumed, as the newest WordPress default theme, that it was the most future-proof and would avoid compatibility issues.
Is there just no way around this issue while keeping the Twenty Twenty Four theme?
ok, so you definitely have bbpress enabled 🙂
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes. don’t use twenty twenty four, as it is an FSE theme
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Health Check & Troubleshooting
Then come back