Hi,
Is there a possibility to let forum members send eachother private messages? If so, is there a plugin (compitaible with latestversion of wordpress and total theme) that works good with bbpress or do you know any other possibilities?
Thanks in advance!
Yes, the bbpress style pack!
Well I don’t know exactly when this problem started unfortunalely…
Regards.
Adrià Calendario.
hmmm…interesting..
the shortcode [bsp-display-topic-index] is from my stylepack plugin, whereas [bbp-topic-index] is from bbpress.
If this was working ok, I’ll need to work out what has changed to make it not work 🙂
This problem appears 1 or 2 week ago people tell me (but I didn’t notice)
I didn’t do anything, no new bbpress or whatever…
I tried to re-save permalinks as you said but didn’t work!
So strange… and I need to fix it soon as posible 🙁
so has this just started? new site? new bbpress?
try
dashboard>settings>permalinks and just click save – I don’t expect this to fix, but it will eliminate !
Note to others looking for tips: I found BuddyX theme. Its free and seems to solve issues with bbpress and buddypress in one go. Thus far its a good solution for my site atleast 😊👍
usual fault finding applies
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
I set up my forums with the help of “bbp style pack”, but unfortunately had to deactivate it as it kept causing fatal errors stopping me from logging in, and sometimes throwing errors in admin panel. But now something weird has happened to the layout. It seems to be “double spacing” lines. I have removed bbpress and bbp style pack from the plugin area, and then reinstalled the plugins … but the same error persists.
I have looked at the code, and there doesn’t seem to be any clues; all entries are still within their
<ul id="bbp-forum-447" ...
</ul>
<p><!-- #bbp-forum-447 --></p>
So no clues there. Anyone any ideas?

Sorry, I’m being brain dead this afternoon.
Spectate is a capability shared by many roles, so the code above is rubbish !
Try this
function forum_user_is_spectator(){
if ( is_bbpress() && is_user_logged_in() ) {
$user_ID = get_current_user_id() ;
$role = bbp_get_user_role( $user_id );
if ($role == bbp_get_spectator_role()){
wp_enqueue_script( 'spectator-js', get_template_directory_uri() . '/js/spectator.js', array(), false, true);
}
}
}
you add action is right, and I’d have this as the function (not tested!)
function forum_user_is_spectator(){
if ( is_bbpress() && is_user_logged_in() ) {
$User_ID = get_current_user_id() ;
$Spectator = (!empty(current_user_can( 'spectate' )) ? 1 : 0) ;
if ($Spectator){
wp_enqueue_script( 'spectator-js', get_template_directory_uri() . '/js/spectator.js', array(), false, true);
}
}
}
Hi there,
Due to a high number of spambot registrations, any user who registers for the forum initially gets “Spectator” rights. Once I check (usually within 12-24 hours) that they are not spam, I change them to “Participant”.
Some people get annoyed that they cannot post immediately. And I would like to create a popup banner that appears when users login for the first time but cannot post. I am capable of the JS and the CSS, but not quite the PHP.
Basically, I want to enqueue a JS file if the user is a “spectator” and is “logged in”.
Could you please advise how to complete my function (hopefully just the commented parts), which will go in the functions.php file, and what add_action
arguments should be applied if I am wrong?
function forum_user_is_spectator(){
if ( is_bbpress() && is_user_logged_in() ) {
//$User_ID = get user ID
//$Spectator = find out if User Has Spectator rights
if ($Spectator){
wp_enqueue_script( 'spectator-js', get_template_directory_uri() . '/js/spectator.js', array(), false, true);
}
}
}
add_action('wp_enqueue_scripts', 'forum_user_is_spectator');
thx in advance
It’s kinda weird that when I edit this php file you mention “content-single-topic.php”, it didn’t show those changes on the forum pages.
ok, question, does your theme have bbpress files associated with it? or is a plugin affecting this
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,
I am not good at coding or custom css. My level of knowledge is: I just know how to install and activate stuff on wordpress more or less.
I am looking to get a clean, crisp and modern design on my forum and member site (located on a subdomain of my main homepage). However I cant really find a good theme. I am looking for a cheap solution – if possible free. I use BBpress and Buddypress and thats mostly the features I need. I will use a custom register plugin also and the main page should present news and some quick info for the members to be updates whats going on. Do you have any tips on themes that works well for this and looks good?
I googled and found these mentioned in a list and they where free (however not having a presentation on the main page as I want):
https://zakratheme.com/
https://wpastra.com/
Please help if you have any ideas 😊🙏
Having done a little digging in the CSS that “bbp style pack” creates, I THINK I have isolated the buttons to the class of
#bbpress-forums.button{
background-color:#9e9e9e
color: 000000
}
… which is the correct grey / black that the editor buttons SHOULD be. But it seems that something after that is picking up the theme colours, and setting it to those. (Unless there is some code earlier that is !IMPORTANT! that is setting it.
Also, “bbPress” seems to have a mind of it’s own, disregarding settings made within WordPress. For example, the editor has been set up with two rows of buttons … but “bbPress” will only display the default 12 or 13 buttons in one row, (and not even those match what’s been set up elsewhere in WordPress) The same plugin that sets up two rows of buttons has an option with “Don’t use visual editor in bbPress” Guess what … “bbPress” loaded the visual editor anyway.
Another plugin states “Switch this on to use the membership profile rather than the bbPress profile” Turn that on, and … rather than link to the profile, the link shows “#” so that it simply reloads the same page. And the big profile button (beside “Create Topic”) STILL jumps to the bbPress profile !!
OK, appreciate that some of those things are bbPress not accepting the settings of the other plugins … but it gets somewhat annoying when you bat your head against a brick wall all day!
I’m running 2.6.6 on 5.7 on my test sites, all I can suggest is
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
Something did go astray in the link supplied. The widgets do now show.
BBpress Forum

Thank you
Hi Robin,
Thanks for your response.
We are using v2.5.14 before and we’ve updated it to v2.6.6.
The template file is “loop-replies.php” which is inside the directory “/wp-content/plugins/bbpress/templates/default/bbpress”.
Here’s the screenshot for comparison reference.

We have the “v2.5.14” on left of the screenshot and we have the “v2.6.6” on the right. As you can see this functions “bbp_topic_subscription_link()” and “bbp_user_favorites_link()” were removed on the updated template.
Thanks!
Is bbPress 2.6.6 compatible with WordPress 5.7 ?
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
no, most bbpress sites will be 2.6.6 and this was released in November 2020, so if this was an issue it should be well known by now.
I need to find out where in the bbPress plugin editor I can find the number of answers in the topic discussion forum. I need to correct the incorrect total number of responses on the page.
Thanks for the information.
Martin
On my post / pages, the Tiny MCE Visual Editor displays as it should, ie a row (or two) of grey and black icons, allowing user to select align right / align left / justify etc. (I mention that in case anyone thinks I’m referring to the ‘basic’ buttons as shown on this forum posting options) As such, I don’t think it’s the theme / plugins causing the problem.
However, once “bbPress” fires up, the buttons go crazy, and ‘inherit’ the CSS styles from the theme. (The vendor who created the “WP-Edit” plugin says in an article that some themes are DESIGNED so that the buttons change to the theme colours; I want to keep the default colours)
In another post, RobinW suggested the “bbpress-pack” which has done a great job getting the forum set up the way I want … but it doesn’t redress the button problem.
I am using:
Theme: dashscroll
Plugins: ARMember (membership plugin)
bbPress
WP-Edit (to change the buttons on the editor)
I THINK there is code I can place somewhere that effectively filters this settting so that it doesn’t take effect … but what I need to filter for, or the code to use I have no idea.
NB: The “Visual” and “Text” buttons also seem to be inheriting the font size / padding of theme as it is also displacing the text on said buttons.
https://atomz.pro/tec-tocc/Forums/forum/atomz-apps/product-directory/
Because of different html code (using tabs in html) the space is not the same in one widget! And the items do not vertically align correctly. See image and link


BBpress Forum
Hi,
We are having the following issues after we have updated the bbPress plugin version to 2.6.6.
1.) Topic favorites and subscription button are missing.
We’ve actually checked the template file where those buttons were being displayed and the functions that shows those buttons were not here anymore. We’re wondering if there’s any reason why it was removed on the latest plugin version update.
2.) When user subscribe to a forum, the forum is not listed on the “Subscribe Forums” page under members page. e.g. /members/111/forums/subscriptions/
WordPress version: 5.6.1
BuddyPress version: 7.2.1(latest)