Tested it out on your site and I saw the issue. I don’t really have a fix for this yet but I know another guy that had something similar and I wonder if something in your guys set-ups could be causing the issue.
I emailed you some questions to help me try to pinpoint the issue.
If I still can’t find anything, I will just collect some data and post what you two guys already did and report a bug on the bbPress trac linking to both of your guys topics.
okay, i tried the following:
tag user in BuddyPress Activity, user could receive notification
tag user in bbpress forum post/comment, user could not receive notification
it seems like tagging user in forum does trigger notification, can anyone here confirm if this is expected behaviour?
if i want to trigger notification when user is tagged in forum post/comment, what should i do? thanks
I am not sure if having email/bubble notifications is there if you @mention someone in bbPress forums.
Maybe using this would add a notification but I am not sure.
https://wordpress.org/plugins/bp-live-notification/
Use this custom CSS to make the forums full-width.
.bbpress #content {
width: 100%;
}
Hi,
when i mention user (eg: @shadow_boi) in a new forum post/reply, is the mentioned user supposed to receive a bubble notification?
I tired, but there is no bubble notification or email sent. was it expected?
WP: 4.3
theme: Twenty FifteenVersion: 1.3
buddypress 2.3.2.1
bbpress 2.5.8
i have disabled all other plugins except for bbpress and buddypress
I see it is now on your forums. I see that the CSS causing the issue is definitely from the bbPress New UI plugin in its dark theme.
Contact the developer of the plugin so other users do not come across the same issue as you are.
Oh and bbPress has classes for each of its areas on the forums, most prefixed with some kind of bbp in them. Other plugins and themes could use those classes and add CSS styles for those areas in their own respective stylesheets to style the forums differently.
You can create a ticket in the bbPress trac, if you think this would be a great idea to have a hook for. I cannot really think of any other great uses except for the link counter feature you said though.
Hey, I have a multisite network set up. I have buddypress network activated and bbpress network activate. On a subsite of my network, I have bbpress forums set up. When a user subscribes to a topic, or posts a new topic, these don’t appear in their Buddypress profile?
There’s essential nowhere to view subscriptions etc – as the buddypress profile overrides the bbpress one.
Any ideas????
Thanks!
Thank you for your fast reply.
My website is running on a WAMP Server, that’s why I linked the theme that I use instead of a link to my website wich isn’t hosted : I’m only using the last version of WordPress, same about bbpress and the theme BrickYard, nothing more. And all is on a fresh install.
Do some troubleshooting. It could be cache, your permalinks need to be refreshed, etc.
Troubleshooting
Navigation Links Return 404s Errors
I kind of disagree with using a theme for just bbPress templates, just customize the forums to your liking with a plugin like bbP style pack.
Depends on what you need. It may be best for you to just search the plugins directory to find what you need.
Plugins
bbPress does not create any database tables it used WordPress’s tables.
Stored Database Data
Install WP Admin No Show to disable users from accessing the WordPress backend.
Troubleshoot for missing pages.
Troubleshooting
Not sure, bbPress could always possibly need only slight changes to support it if any. You can always try it on a test server/local development area to check and make sure though.
What does this have to do with bbPress?
Create new roles with custom capabilities.
Custom Capabilities
TO have individual colors for each role, there is a function that might help. I think you need to create a varialbe to pass the bbp_get_user_display_role() with the id of the user in the reply author bbp_get_reply_author_id() to get the specific user role of the reply author then pass the user role name into $classes. You might also need to use strtolower() to make the class in your code lowercase.
function my_reply_class($classes) {
$classes[] = 'test-class';
return $classes;
}
add_filter( 'bbp_get_reply_class','my_reply_class' );
After all that, all you would need to do is add this CSS.
.myrole .bbp-author-role {
background-color: blue;
}
Hi, I’m a developer and I can change bbPress if needed, but as you know mods on a plugin are removed on plugin update. Since bbPress has many “hooks”, that was an idea for a new one :-).
Have a nice day, Stefano.
Not really a bbPress issue, bbPress just spits out the information. Read this codex guide explaining the issue.
bbp_setup_current_user was called incorrectly
This sounds exactly like your other topic here…and the other one you also created.
HELP PLEASE NEW TO BBPRESS
It is most likely a cache issue on your end. Make sure you have WP-Super-Cache set up correctly and that the cache refreshes when a new post is published or updated.
Clear all cache files when a post or page is published or updated.
I saw this message on your forums page source code that is why I know you are using that specific plugin.
<!-- Dynamic page generated in 1.073 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2015-08-25 19:54:03 -->
<!-- super cache -->
Also do not post multiple topics of the same issue, just update your original topic.
Hello everyone,
I’m running bbpress with the BrickYard theme and I’m use the right sidebar.
Actually I was able to display the sidebar to all of my blog but the forum : I deleted the line “<?php get_sidebar(); ?>” from the file page.php then I saved it under the name of “bbpress.php”.
It works but the forum isn’t at a full width :

And I tried to get the full width but I’m not able to, after some hours I give up.
I read the documentation of the theme, there is a “template-full-width.php” within the theme but it doesn’t work because it’s page.php without the line that gets the sidebar and that I removed so the problem is still there (I believe that it should auto-resize without the sidebar but it’s not the case).
Best regards,
ananotheruser
PS : Sorry about my crappy english.
[upgrade info]
change theme and disable all plugins (works ok)
(error is caused if bbPress is activated)
thanks and sorry for my English
bbPress not logout
I install bbPress and can not logout for wordpress
WP version 4.3
2.5.8 bBPress
theme enfold
Please register in
http://diversidadculturalyjusticia.com/forums/
and tries to logout
not work
or in private send you a login data
if I disable bbPress everything works normally
sorry for my English
I an constructing a site called renthoy and I created a forum using bbpress as i went on the forum and posted something the reply or post wont show up and I tried resetting bbpress still nothing happen the link to the forums is http://renthoy.com/forums/.
Actually, bbPress uses the link count as configured for comment. Since many times in a forum users cite links of the same site (to help other to find information), it would be very useful to have a callback for each extracted link so a plugin che intercept and eventually say that “it has not to be counted” (for example because it is in the same domain).
Thank you, Stefano.
Hi, bbPress (at least version 2.5.8) uses the comment moderation words of WordPress, skipping the moderation check if that field is empty. Actually a forum could have different black list words.
I would like to ask for that feature: an hook to filter/change/enqueue moderation words before bbPress will use them, so I can create a specific configuration in a theme or like.
Thank you, Stefano.