The footnotes don’t work within the forums (even for me, as the admin).
Without taking time to install this plugin and test, I cannot of course see what the above means .
There are thousands and thousands of plugins and bbpress cannot be tested with all 🙂
If they work together then they are compatible, if not then probably not ! There may well be a way to make then work together, but you’d need to find someone to carry out this work. You could try the footnotes plugin author.
And, on a larger note: Does bbPress, by default, isolate itself from other plugins?
Sorry but I don’t understand your question.
forums should be fully functional for logged in users, so your issue should not be there !
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 twentytwelve, and see if this fixes.
Then come back
A request for guidance from a bbPress newbie, who has searched for help and tried various plugins but not found a solution.
I am setting up a WordPress site (V4.2.2) with bbPress (v2.5.7). I want most forums to be browsable by registered logged-in users but not by the public. A logged-in user should be able to subscribe to a topic without admin approval, so they can contribute and get notified of new discussions or comments.
If I make the forum Private that seems to stop unsubscribed but logged in users from seeing the forum. I need something like a ‘Logged-in users’ permission.
Any guidance on how to set this up will be much appreciated – thank you.
Hi,
i have some problem with integrate BBPRESS with my THEME.
The plug in work perfectly with standard wordpress theme but when i activate my custom theme them topics insered in a forum don’t appear.
How can i integrate BBPRESS perfectly with my custom theme ?
Can you help me please ?
Best Regards
Emiliano
I added some css in the custom css plugin, in order to get my bbpress forums full-width (drawing the code from an example in these forums). Success! or so I thought.
But not quite. Now, the “members” pages associated with the pulldown menus at the upper right are “too long”–text entry/text display boxes run over into the space of my right content sidebar. When I deactivate the css plugin, my problem goes away.
(WP 4.2.2, bbpress 2.5.7, Buddypress 2.2.3.1; theme is TwentyFourteen; I was able to see the same problem previewing 2013.)
Here’s the css in question:
.site,
.site-header {
max-width: 100%;
}
.bbpress-forums .col-2cl .main {
background: none repeat-y right 0;
padding-right: 0;
}
.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.site-content .entry-meta,
.page-content {
max-width: 100%;
}
.form-allowed-tags {
display: none;
}
div.bbp-breadcrumb,
div.bbp-topic-tags {
font-size: inherit !important;
}
#bbpress-forums ul.bbp-lead-topic,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-replies,
#bbpress-forums ul.bbp-search-results {
font-size: inherit !important;
}
#bbpress-forums {
font-size: inherit !important;
}
.bbpress .hentry {
margin: 0 auto 48px;
max-width: 100%;
}
@media screen and (min-width: 1008px) {
.bbpress .site-content {
margin-right: 0;
margin-left: 182px;
}
}
@media screen and (min-width: 1080px) {
.bbpress .site-content {
margin-left: 222px;
}
}
@media screen and (min-width: 1218px) {
.bbpress .site-content .entry-content {
margin-right: 0;
}
}
@media screen and (min-width: 673px) {
.bbpress .site-content {
margin-right: 0;
}
}
Can anyone help? I’d love to keep the full-width forum pages, but if it messes up the member pages, it’s a deal breaker…
I followed the advice under: Using bbPress Forums with BuddyPress Group Forums
It is possible and quite powerful to use both bbPress sitewide forums as well as BuddyPress Group Forums. A few caveats apply in order to ensure an easy setup:
1. After installing and activating bbPress, please go to your admin dashboard under “Pages/All Pages” and find any page using the slug of “forums”.
2. If such a page slug exists, as would be normally be the case if you first installed BuddyPress, it is recommended that you delete this page so as to free-up the use of the “forums” slug for bbPress.
3. Be sure that you also empty the trash of this “forums” page to free-up the slug.
4. You can then create a new page slug for BuddyPress Group Forums, using a different name. Eg: “Group Forums”.
5. After creating a new page (Eg: “Group Forums”), go into Settings/BuddyPress/Pages and choose this new page to act as the placeholder for BuddyPress Group Forums
6. Finally, go to Settings/Permalinks and click “Save” to ensure that you update your permalink structure
All was going well until I got to Step 6 and when I saved it crashed the wp-admin. I have spent two days attempting to fix the problem to no avail.
I have to turn off User Groups in Buddypress to get bbpress to load. When I turn on the User Groups and set the Group Forums at Settings/BuddyPress/Pages it crashes. Then I have to FTP Delete the bbpress and change the settings back in order to reload bbpress and take another run at it. Something is wrong.
I am using bbpress 2.5.7, BuddyPress 2.2.3.1, with the BuddyBoss Theme and Child Theme and WordPress 4.2.2. All other plugins are deactivated.
Any suggestions?
@andrew55
bbPress should do this now by default like this site has it.
@robkk for me it doesn’t :/
any suggestions why?
And a year later I must add my thanks- I also have been able to use all this so that it works nicely, including the additional location field and with both website and/or location showing in the profile only if it is filled in…
Getting the location to show in the profile properly took a little more than the changes Steven mentions making to Robin’s code… For anyone else who might come this way here is all of it put together…
/* Add Location field to bbPress user profile page.
*/
function ntwb_user_contact_methods_location( $user_contact ){
/* Add user contact methods */
$user_contact['location'] = __('Location');
return $user_contact;
}
add_filter('user_contactmethods', 'ntwb_user_contact_methods_location');
/* Show Location in bbPress user profile.
*/
function user_profile_bbp_location_information() {
//this function adds the location to the profile display menu
$location=bbp_get_displayed_user_field( 'location' ) ;
if ( ! empty($location) ) {
$label1 = $rpi_options['item1_label'] ;
echo "<p>" ;
printf ( __( 'Location : ', 'bbpress' ));
echo $location;
echo"</p>" ;
}
}
add_action ('bbp_template_after_user_profile', 'user_profile_bbp_location_information') ;
/* Show website in bbPress user profile.
*/
function user_profile_bbp_website_information() {
//this function adds the website to the profile display menu
$url=bbp_get_displayed_user_field( 'user_url' ) ;
if ( ! empty($url) ) {
$label1 = $rpi_options['item1_label'] ;
echo "<p>" ;
printf ( __( 'Website : ', 'bbpress' ));
$url='<a href="'.$url.'">'.$url.'</a>';
echo $url;
echo"</p>" ;
}
}
add_action ('bbp_template_after_user_profile', 'user_profile_bbp_website_information') ;
hi!
On default, bbPress displays all usernames in lowercase letters.
How can I display the upper case letters for all users?
I already searched in some topics for the answer, but haven’t found anything useful.
Thank you!
I have Footnotes installed on a site which uses bbPress. The footnotes don’t work within the forums (even for me, as the admin).
Are these two plugins incompatible? Is there a simple, sustainable way to make the Footnotes plugin work within the forums?
And, on a larger note: Does bbPress, by default, isolate itself from other plugins?
Hi!
I am planning to create a new forum website using bbPress. I want to change / add / remove topic headings. Since, I am yet planning I will use latest versions of WordPress and bbPress
eg;
instead of : Topic, Voices, Replies, Freshness
I want : Posts (Number of replies to the topic) Views (number of views) Posted By (Name /username of topic starter) Latest Reply (latest reply by + minutes ago)
I even want to add a few more headings like catagories
Thanks a lot for the help 🙂

I’m in the same boat as ChecMark: starter-theme appears to do literally nothing to my bbpress forum.
I note that instructions upthread are ambiguous: one guys says you need to put it into root of theme, not child theme; another guy says put it in child theme. I tried it in both, using twenty fourteen and a child; I also tried it in a basic twenty-thirteen. Nothing. I can see the folder, and move it around with File Manager, but no matter where I put it, it seems completely without effect!
I’m a rank beginner, obviously. What could be wrong?
New user:
I’ve recently installed bbpress on my wordpress website.
The freshness/voice columns look out of shape, how can I fix this?
Here is the link: http://worldinsport.com/forums/forum/sports-general/
Many thanks
The plugin comes to wordpress org! Checkout https://wordpress.org/plugins/bbpress-permalinks-with-id/
Right now without auto flushing rules 😭
Hi Thanks for your reply. Yes, there’s a theme option to show extracts only, but it only works when the bbPress plugin is deactivated. Does the advice you’ve given still apply? Thanks again.
Hi there,
I am still seeing this issue in version 2.5.7 where notification emails are displaying all the email addresses in the bcc field. This is becoming an issue of privacy for my members. I raised this topic before, and someone said they were working on it, but then just closed the topic.
https://bbpress.org/forums/topic/bcc-field-in-notifications-is-visible-to-users/
I have asked my webhost and they say it is not a server issue. Can someone please help?
Thanks.
Anne.
@robkk , thanks. Actually, I had written some code like that for my website late last night. The result can be seen in action at http://dcjtech.info/forum/articles/operating-systems/linux/ . I even figured out how to migrate the bbpress-simple-view-counts data to my implementation. The migration was easy (a few SQL queries via phpMyAdmin) and not at all complex as other developers thought (https://wordpress.org/support/topic/sync-with-simple-view-counts).
I installed bbPress as a plugin, so I have a WP blog I do not want commented.
The documentation is easy to understand, but difficult to navigate/search for me.
Thank you very much.
Cheers!
Hi, I just installed bbpress on my WP site – I have set up two forums and posted one topic in each forum. I made each of the topics super sticky because I wanted them to stay at the top of each forum. The topics are not displaying in their forums properly. I can see both topics when I click on either of the forums – whereas I should only be seeing one topic per forum. Also, on the forum index page the one forum is not even showing that there is a topic in it. You can see the page here: http://papercrafterslibrary.co/forum/
Thanks
Hey Rob,
Yes – thank you. Dan has been very helpful. At this point, I think it’s becoming more of a preference question … as I am struggling with what path to take.
We definitely already have sitewide forums w/ vBulletin, so we could easily just keep WordPress as our blog and use site-wide forums w/ bbPress. The thing I feel like I’m missing there is the added sense of community that can be built via the “add friend” type thing you get w/ BuddyPress.
Beyond that, my biggest question is the use of Groups in BuddyPress. My concern I expressed in the other thread was that you can get the discussion happening inside a group (via the comment/status system) that is NOT part of the forum, and vice-versa. So, discussion is not happening in the same place. The big idea we had was to bring it all together.
I suppose the simplest idea would be to not enable groups, and use site-wide forums … but if not using Groups, I’m not sure what other big plus there is to BuddyPress.
Again – I realize at this point, it’s all subjective and preference. I’m enlisting some beta-testers to hit our staging site from our existing forums to see what they like/dislike.
its all self explatory really.
you can test them out by creating a test page and putting each shortcode into it to see what it does.
if you need help finding ids of bbPress post types install this plugin, then look in the certain post types section.
like say forums , you go to the WordPress back-end and go to forums> all forums and you will see all the forums post id to use for these shortcodes. It would be close to the same procedure for topics and replies.
https://wordpress.org/plugins/reveal-ids-for-wp-admin-25/
i tried to make this and failed at it.
you can look for tutorials on the web for creating this type of thing like this.
bbPress Recent Replies Shortcode
or you can hire a developer to create this type of functionality for you.
if you need to post a job at http://jobs.wordpress.net/
im not sure about this , i cant tell if its a bug or not??
there have been a bug using BuddyPress Groups and bbPress lately. i dont know if this is part of it.
Hello!
First, I want to say how much I appreciate the BBpress platform. I’ve been using it for over a year now and it has served the site well.
I have ran into an issue where every single comment ever made on posts now appear below the forums. I’m completely baffled as to how to handle this. It does seem to be a theme issue as this does not happen with the TwentyFifteen theme. Is there a way to remove showing the comments altogether on any forum page (which is preferred actually).
Has anyone had this same issue? Is there a way to simply have the comments not show up at all in the forums? Is there code that I can place in my functions.php that will make them not appear in the forums?
Any and all help would be greatly appreciated. As of now, this issue is causing some confusion and making my pages extremely long.
My site is FREEDOMcgc.com
Link to where the issue is happening: CLICK HERE
WordPress Version WordPress 4.2.2
bbpress Version 2.5.7
Buddypress Version 2.2.3.1