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
I wanted to start a new topic, but didn’t see any options, and this topic is exactly what I would have said.
I imported my SMF forums to bbpress with mostly success.
here’s my not yet published site
http://nutopia.cc/Holistic-Counseling-WP/holistic-counseling-community-forums/
you’ll need to login to see forums
username: test
p.w: 123456
2 issues (that still need to be fixed).
1) The main forums area of the forums has counted all the correct number of topics and replies, but once clicking on a Forum, at the top of the page, the #1 of topics are again, correct, but then it says a fewer amount of topics.
eg on Introduce Yourself forum –
This forum contains 8 topics and 15 replies.
Viewing 4 topics – 1 through 4 (of 4 total)
This occurred in all forums.
How to fix?
2) My forum posts (I’m admin) appears as anonymous. All other users are fine.
How to fix?
Please and thanks a bunch.
Hi ,
I have one problem with BBpress admin screen. Admin can edit any new topic created after publish. But He is not edit that topic which is status has pending. Is that any way to do this from front-end.
Thanks
Money
but this issue was present before activating bbPress.
uh? not sure how you can have an issue with forum software before it is installed.
I presume you went through
https://bbpress.org/forums/topic/before-posting/
and if so did it identify the theme as the issue or a plugin?
Hi, I’m having this exact issue, but I could not find the solution using Mel77’s comment.
Can anyone help me solve this?
My forums are at http://www.nomadsgaming.com/forums/
The theme is Customizr and I’m also using bbPress, but this issue was present before activating bbPress.
what bbpress role does the person have? if admin, and they see the ip address in replies, you could put the email under this using
add_action ('bbp_theme_after_reply_author_admin_details', 'rew_show_email') ;
function rew_show_email () {
$user_id_rew = bbp_get_reply_author_id () ;
$user_info_rew = get_userdata($user_id_rew);
$email = $user_info_rew->user_email;
echo 'Email: '.$email ;
}
put this in your functions file
https://codex.bbpress.org/functions-files-and-child-themes-explained/
If I understand you correctly you want to amend a file in
wp-content/plugins/bbpress/templates/default/bbpress/
The easiest way is to copy the relevant file to your child theme
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress and copy the file there eg
wp-content/themes/%your-theme-name%/bbpress/loop-forums.php
bbPress will now use this template instead of the original
and you can amend this
You can also add a location – for instance within a plugin I use I add a location using :
add_action( 'bbp_register_theme_packages', 'bsp_register_plugin_template1' );
//get the template path
function bsp_get_template1_path() {
return BSP_PLUGIN_DIR . '/templates/templates1';
}
function bsp_register_plugin_template1() {
bbp_register_template_stack( 'bsp_get_template1_path', 12 );
}
Hi,
I want to override a template part in a plugin
there is a filter on bbp_get_template_part but also in the comments of template-functions.php it mentions you can also add a new location to the template stack.
Which is the best / most future proof method of these to, for example, override the loop-forums.php template part within a plugin.
Thanks in advance for the replies.
Hello!
I am installing fresh bbPress forums and I am stuck with the following recommendation.
Prefix all forum content with the Forum Root slug (Recommended)
I could not find a reason to why is this recommended. What happens if I do not use the prefix? I would like to keep the URLs shorter but I do not know the consequences of avoiding that prefix.
Kindly help me understand this recommendation.
Thank you

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
Good day, I’d like to find out from you if is is possible to parse the glossary terms that come up in the heading of my forum. In other words, I do not want the words that are linked to my CM Tooltip plugin to be highlighted in the headings of my forum topics so I need to wrap the term in [glossary_exclude] [/glossary_exclude] within the template.
For examples of what I mean, see the headings in the links to these topics:
http://www.pdsnet.co.za/index.php/forums/forum/investment-advice/ – the word “investment” is highlighted
http://www.pdsnet.co.za/index.php/forums/topic/elimination-of-the-bears/ – the word “bears” is highlighted
Wordpress Version 4.5.3, bbPress Version 2.5.10
Thank you
Yes, running Akismet. It does a great job of flagging WordPress spam posts. I did not realize that apparently Akismet also flags bbPress forum topics and replies, putting them in “spam” sections. I will now keep an eye on those areas.
Hi,
I have recently installed BBPress for WordPress. When I create a new topics I can see the counter for topics & posts gets updated, but the topics do not show up under the forums. I can see the topics in my wp-admin area or when I make them sticky.
Site: http://www.vegecravings.com
Forum Link: http://www.vegecravings.com/forum
Theme: Evolve
Wordpress version: 4.5.3
BBPress version: 2.5.10
I rewrote the caching part of freshness output… However, the patch in bug #2414 fixed my issues, so I don’t need this workaround anymore.
I already know how to do CSS. How do I make a template for the bbPress Topic page?
ah, now I can see what you mean.
Yes that’s buddypress not bbpress – try their support forum
https://buddypress.org/support/
I appreciate your willingness to help. 🙂 It’s not functionality that I want to customize at this time. Right now, I’m only really interested in getting the pages to integrate/fit well with my site. That is, I need to integrate it with my theme.
Perhaps if we look at this from the other end the problem will be easier to understand:
My plan at present is to develop a new template page within my theme to handle bbPress Topic pages. This new page will adopt elements (mostly copy/paste style) from one of the bbPress files (plugin-bbpress.php, bbpress.php, forums.php, or forum.php). I’m confused as to which of those files should be used for displaying bbPress Topcic pages (e.g. sopearly.com/topic/welcome-to-the-sopearly-community/).
If I had to guess, I would start by copying & modifying forum.php into my new template. Would that be correct?
hmm.. The only way I can immediately think of is to modify loop-topics
so
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-topics.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-topics.php
bbPress will now use this template instead of the original
and you can amend this
so in that file you will see
<?php while ( bbp_topics() ) : bbp_the_topic(); ?>
<?php bbp_get_template_part( 'loop', 'single-topic' ); ?>
<?php endwhile; ?>
you would need to check with forum the user is in and then custom display
so something like – you’d need to write the code – this is just words !
<?php
if (forum == the one you want to change) {
then make an array of the ID, and then cycle through them
foreach ($topics as $topic) {
bbp_get_template_part( 'loop', 'single-topic' );
}
}
else { ?>
<?php while ( bbp_topics() ) : bbp_the_topic(); ?>
<?php bbp_get_template_part( 'loop', 'single-topic' ); ?>
<?php endwhile; ?>
<?php } ?>
which of the files …I should be using to customize the bbPress topic page…which file name I should rename it to
You’ll need to say what customisation you want to do, as that will affect my answer, if you can detail what you are after, I’ll try to help, but I do need details as I said above. I’m not trying to be awkward, just trying to help !
@aeneas1 I don’t think that plugin should be hosted on wordpress plugins, and I’ve asked the plugin review team to see if it violates the plugin rules.
There is an import phpbb in the bbpress software – I think you may have seen it
Dashboard>tools>forums and you can select phpbb – did you have an issue with this?
You are correct. There is no functionality missing, and I am trying to get the bbPress pages to look like they fit with the rest of my site (i.e. background and header–theme elements). My last reply (#176623) was badly mangled by the auto-populated page elements from my site (did not see that coming), and Akismet keeps blocking my posts, so I have no idea when anyone will see this. :”’ (
Please correct me if I am using the wrong approach, but what I am trying to do is figure out which of the files at wp-content/plugins/bbpress/templates/default/bbpress that I should be using to customize the bbPress topic page (e.g. ‘sopearly.com/topic/welcome-to-the-sopearly-community/’) and which file name I should rename it to: plugin-bbpress.php, bbpress.php, forums.php, forum.php.
I realize I’m having a lot of trouble with this. Thanks so much for your help. 🙂
do i need both bbpress and buddypress?
Depends on what you might need for your site, but technically no.
assuming i don’t “need” both, is it advantageous to have both?
Having BuddyPress allows you to use Group Forums, wordpress toolbar notifications for new topics and replies, better profile and custom profile fields, Members page, and a bunch of other stuff that might be useful if you want a more featureful forum.
do i need a wordpress page? i thought this was the case, so i registered and signed up for an annual wordpress account.. now that i’ve installed bbpress, it appears that i don’t actually need a wordpress page or an annual account, is this correct?
You don’t need a page, its not on the recommeded requirements for set up in my opinion. It might be required for a workaround for a theme/bbPress related bug. What do you mean by annual account? Just so you know bbPress won’t work on wordpress.com sites, and only self hosted ones.
how do i import a phpbb 3.1 forum into wordpress? i read the tutorial but a phpbb import tool isn’t included among the other import tools…
for 3.1 phpbb forums look into using bbPress 2.6 alpha, because the current version of the phpbb import in the stable version of bbPress does not work for version 3.1 phpbb forums.
my goal is to set up a phpbb-type forum/discussion, i’m not interested a wordpress blog or the like, just a discussion board. is this something i can achieve with bbpress, bbbuddy, the combo of both?
Its possible to create a forum with some features sort of like phpbb with the help of BuddyPress and bbPress, and quite possibly some other plugins that might be useful.
it’s enough to send a prospective wordpress user running in the direction of other alternatives
bbPress has a forum import tool in Tools > Forums > Import Forums (free and open source code, so any dev can just improve the program how they want then official devs can commit changes or not).
no experience with wordpress or bbpress but it looked great so i installed it… next up was an attempt to “import” my phpbb data to bbpress using the dashboard import tool but, sadly, a phpbb install plugin was not among those listed in the dashboard so i had to search the plugins directory… not knowing which one was best, i blindly chose the “CMS2CMS: phpBB to bbPress Forum Convertor” and began the migration process.. well surprise, surprise, shortly after the program began the migration a popup window reared its ugly head asking for $38 in order to complete a full migration… what the f is that all about? so is the wordpress life? wordpress plugin life? plugins are listed with no indication that they cost x amount of dollars until after you install the thing and try to use it? what sort of nonsense is that? how does this practice fly with wordpress? it’s enough to send a prospective wordpress user running in the direction of other alternatives, good grief…