I think this cause by cache not clear. You should disable all your cache plugin like wp cache or w3 total cache. Then clear cache from VPS or from host control panel (if use host).
The better way is try to list the database of bbpress and files which related to bbpress to the avoid caching in Cache Plugin
———–
Hi there,
Having installed by first bbPress and quite loving it I do have a problem, for some reason my quicktags are all in a vertical line (see image) and not in a nice tidy horizontal line.

Does anyone have a solution at all please?
Thanks,
Nellples
Same issue as described above for a client’s forum I am working on.
New topics and replies not showing, freshness incorrect
Now I do have one question as no one has really mentioned this yet.
What server is everyone running wordpress/bbpress on?
Aside from this issue I do have smaller issues that I had to handle simply because my client’s server configuration and it being on IIS/Windows server as opposed to Linux (I normally don’t have issues such as this on Linux)
Hi,
I’m using the plugin WP Business Intelligence for show custom report about my blog.
I would show the topic/thread that not have new answers from 1 month.
For this plugin, I must write custom SQL Query.
I studied bbPress database schema, but I can not find where the answers are saved for each thread.
Who can help me to write my query?
Thanks.
Has anyone found a methodical, cohesive way to change “Forums” as the title? I’ve created bbpress.php in my theme root and changed the title to what I want it to be, so now it reads “Titlte I WantForums” all run together, exactly like that. How do I get rid of the word “Forums” in the title? LOL
Thanks!
Thank you very much for your answer Sam Rohn.
They seem to have found a solution here:
I need serious help with bbpress integration
but the solution isn’t public, they didn’t share it unfortunately.
I’ll be forced to work on the .htaccess file, I guess.
Hi everyone
My forum is currently running on YAF, which I absolutely hate. It means that I have to run my site on Windows hosting and its always breaking down.
How easy is it to import all the posts and users from YAF into BBPress? Has anyone tried this?
Thanks
Van
Thanks again, and if you accept donations please contact me or direct me to a place where I can contribute to all who helped here. Thanks again,
no problem , any other issues make a new topic.
Robin has donate links here.
Home
I can set up a wordpress.com account tomorrow with some paypal donate button if you really feel like donating to me.
other ways of contributing i guess are helping out in the forums the best you can with other users, or the bbPress project itself.
Thanks @robkk. This is looking good to me after making the changes. I tested on a few different screens here with different sizes and seems to be working well. I’m not sure why the @media screen commands weren’t working before, but suspect it had something to do with the order. This is what I ended up with for those looking to do something similar in the future. Thanks again, and if you accept donations please contact me or direct me to a place where I can contribute to all who helped here. Thanks again,
.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;
}
}
@media screen and (min-width: 1218px) {
.bbpress .site-content .entry-content {
margin-right: 0px;
}
}
this should remove that space on the right of the forums
@bsilverop
remove the !important from
@media screen and (min-width: 1008px) {
.bbpress .site-content {
margin-right: 0 !important;
margin-left: 182px !important;
}
}
there should be some space to the right, I will try to figure out that too, but tell me if removing the !important fixes the forums hiding under the left sidebar.
Thanks. I wonder why that is.
Did you, by any chance, run the “Remap existing users to default forum roles” tool? I wouldn’t have because I have waaaay too many people that have the “blocked” bbPress role but I didn’t change from “subscriber” in their WP role.
Just curious if there’s a case to be made for a tool to do the same but just for Keymaster capabilities. Or something. I’m not quite familiar with all of it to know the right way to handle it.
Anyway, thank you for letting me know! 🙂 I was super curious.
this css code i forgot to add , put it before the media queries
.bbpress .hentry {
margin: 0px auto 48px;
max-width: 100%;
}
Hi – when you’re logged in as an admin, you should be able to do this from the front end as well as in admin. There should be a little bar of links at the top of each post like the one in the image on the right here: http://www.ilovecolors.com.ar/add-private-content-to-bbpress-topics-and-replies/ (the plugin has nothing to do with this issue, it’s just the best image I could find).
If you don’t see that, make sure your bbPress role is set to Keymaster. And if that is right, make sure another plugin or your theme isn’t causing them not to appear by disabling all plugins then re-enabling them one by one and switching to the Twenty Fourteen theme.
alright this should be your entire css now
if the @media queries still do not work try just adding them into your child themes style.css file.
if it still doesnt work when you put the media queries in your style.css make sure you are not using @import and instead using this in your child themes functions.php
add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
function enqueue_child_theme_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_uri(), array('parent-style') );
}
more info here https://codex.wordpress.org/Child_Themes
and also contact jetpacks plugin support and see if there is a problem or if i made another mistake or something
.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;
}
@media screen and (min-width: 1008px) {
.bbpress .site-content {
margin-right: 0 !important;
margin-left: 182px !important;
}
}
@media screen and (min-width: 1080px) {
.bbpress .site-content {
margin-left: 222px;
}
}
@media screen and (min-width: 673px) {
.bbpress .site-content {
margin-right: 0;
}
}
you can see i removed the width:100% on the #bbpress-forums css code , its because it didnt really do anything.
hello guys, I created the portal with WordPress, I installed the plugin bbPress. as you can see in the background to the forum topic STICK does not allow to read the title of the topic, even in the discussion. Should I just increase the size of FONT and putting in the color BLACK
http://evilsoul.altervista.org/
I’ve updated the plugin to include a (very basic) paypal payment feature and the ability to mark topics as “accepted”. You have to manually update the topics when payments come in, I don’t have enough time to make any sort of PayPal IPN integration.
Code has been updated here: https://github.com/dtbaker/bbPress-Support-Forums ( warning, my paypal address is hard coded into includes/bbps-vote-functions.php )
Screenshots:
Main forum page, it sorts topics by “funds” then “accepted” then “votes”.

Admin topic page: you can vote, mark topic as accepted, and manually update payments.

User topic view, can vote (when logged in) and pay:

Live demo here: http://ultimateclientmanager.com/forums/forum/feature-requests/
Hi,
Thanks @robin-w for a great plugin.
I have some additional requirements – do you know of a way in bbpress (possibly in conjunction with bbp-private-groups) which gives:
– ability for a user to be set up as a ‘private group moderator’
– the moderator from above can grant access to users who have requested access to a private forum (if this is possible without the need for them to log in to wp-admin that’d be great)
The bbp-private-groups plugin does the private forum (group) stuff but does not allow for moderation of users by other users.
This would be an amazing added feature.
thanks
gvanto
Thanks. I’m just using one .bbpress .site-content because I’m keeping the right sidebar. Whenever I use the @media screen piece, it just chops off what’s below it. But yes, it does seem like it’s needed. The first other person to test said that the title of the page is cut off just a little bit on the left side, where as on my end it seems like there’s plenty of space.
This is all the custom CSS if it makes a difference:
.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;
width: 100% !important;
}
.bbpress .site-content {
margin-right: 0 !important;
margin-left: 182px !important;
}
And this is it after I add the @media screen tag (notice it just cuts off the rest):
.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;
width: 100% !important;
}
@media screen and (min-width: 1008px) {
bbPM was for the standalone version of bbPress , its outdated and will not work for the current version of the plugin.
try this and make sure its above the other .bbpress .site-content {
@media screen and (min-width: 1008px) {
.bbpress .site-content {
margin-right: 0 !important;
margin-left: 182px !important;
}
I didn’t notice this before, but the problem seems to be that when I try and save anything with the @media statement, it ends up saving it like what’s shown below (notice the missing margin-right and margin-left) no matter how many times I fill in the missing lines and re-save. I suppose it’s an issue with the CSS plugin (JetPack Custom CSS), but from what I understand that file is stored in the database and generated dynamically and cannot be modified directly. So I’m not too sure how I can add this otherwise.
@media screen and (min-width: 1008px)
.bbpress .site-content {
}
I am using bbPress 2.5.4 on WordPress 4.0.
I have added in the bbPM plugin by uploading it to my WordPress Plugin file through FTP. I can see the bbPM plugin on the Plugins page in the WordPress Dashboard but when I try to activate it I get the following error:
“Fatal error: Call to undefined function bb_load_plugin_textdomain() in ../wp-content/plugins/bbpm/bbpm.php on line 20″
I looked through this forum and found some suggestions of adding bbPM into a “my-plugins” folder inside the bbPress folder and now that I have done this, the bbPM plugin no longer shows up on the Plugins page.
I made sure both the my-plugins folder and the bbPM folder had 755 permissions but bbPM still will not appear.
Any help would be greatly appreciated