What bbPress version you’re using? Standalone or Plugin?
There are a few things I really always look at when participating in a forum, and that is “role”, “total number of posts” and “registry date” of the ones who answers the topic.
By looking at those few informations I quickly make up my mind as to how much weight I should put on the persons opinions.
If the person has 1256 posts and was registered 09.09.2008, then I often would add more weight to that person’s opinions than a person with just 5 posts and registered 04.20.2012…
So, is there a way to add some php code tp for instance
wp-content/plugins/bbpress/bbp-theme-compat/bbpress/loop-single-reply.php
to get:
– User’s total number of posts
– User’s registry date
I was able to get the user’s role by following this:
http://bbpress.org/forums/topic/displaying-user-role-beside-their-replies
Thank you
SKParticipant
Another thing…I looked at the code https://bbpress.svn.wordpress.org/branches/plugin/bbpress.php and it seems to seek bbpress-sv.mo not bbpress-plugin-sv.mo so you might try renaming the file again (sorry!)
SKParticipant
Not really. Am at a loss. The only thing I can think of is that there is a defective .mo file in http://vaxmora.se/wp-content/plugins/bbpress/bbp-languages/ which is being loaded…have a look and delete any .mo files you find in that folder.
If that doesn’t work, then you need help from someone with more expertise than I have.
SKParticipant
I don’t think you missed anything in config as your WP is in Swedish and this is also reflected in your opening HTML tag
<html lang="sv-SE" dir="ltr">
For some reason bbPress is not picking up the correct language files and falling back on English.
Typically it is due to missing, incorrectly named or incorrectly placed language file.
But I can see your .po at http://vaxmora.se/wp-content/languages/bbpress/bbpress-plugin-sv.po
Hi,
I have asked this question in WP forum, but got no response there. Maybe someone from this forum will be able to help me on my problem…
I have WP 3.3.1 with bbPress 2.0.2. Replays order in topics is set to descending. Issue is:
Topic has many replays in it and therefore topic is divided in several pages. As ‘replays’ order is set to descending, newest replays are in first page. Problem is after submitting new replay, you are sent to very first topic replay e.g. last (oldest) page of topic.
Any ideas how to get it work in way that after submitting new replay bbPress send you to newest replays e.g. first page of topic in this case?
I have a bbPress 2.1 install , and I read that there is a YouTube-video URL embedding in it. But it some how does not work on my site, OR I might use it wrong….
Am I supposed to just paste the YouTube-link, and the video should show?
I would like to change things like size and color for my forum titles, but I just cannot seem to figure out where in the CSS to change this. I have been looking in my WordPress style.css and in bbpress.css, but I cannot find it. I tried to add h1.entry-title { color: #900 } to bbpress.css, but nothing happened. I have found how to control this at the rest of the homepage, but not for the forum part…
Here is the site: http://rodrigo-matos.com
Could somebody please help me with this? I’m going crazy!
OK I did.
No change *???* still ENG and I did as you told me twice 
New DL and I put it in
/vaxmora.se/wp-content/languages/bbpress/
bbpress-plugin-sv.mo AND bbpress-plugin-sv.po
Do I miss anything in config?
SKParticipant
Hmm..weird.
Let’s try again from the top.
Download the .mo file from https://translate.wordpress.org/projects/bbpress/plugin/sv/default and without making any changes, place it in http://vaxmora.se/wp-content/languages/bbpress/
I know you have done it before, but have a go again and see if it makes any difference.
SKParticipant
Also, the name of your file should be of the format bbpress-de_DE.mo not simply de_DE.mo
Actually that has changed now. If you download the file from https://translate.wordpress.org/projects/bbpress/plugin/ then it will have the correct name already, which would be in the format bbpress-plugin-de.mo
SKParticipant
My bad. I meant bbpress-plugin-sv.mo and bbpress-plugin-sv.po
SKParticipant
Yeah, wrong filenames. I think they changed the filenames to bbpress-plugin-sv_SE.mo and bbpress-plugin-sv_SE.po
Rename the files and you should be fine
It says ” define(‘WPLANG’, ‘sv_SE’); “
But for me most of it is still in ENG
http://vaxmora.se/forums/forum/annonsplank/
I added the language files in
/wp-content/languages/bbpress
They are called: bbpress-sv_SE.mo and bbpress-sv_SE.po
SKParticipant
I’ve been experiencing lots (and I mean lots) of Bad Gateway errors today on bbpress.org forums…
SKParticipant
Could WP Super Cache tags do the job?
https://wordpress.org/extend/plugins/wp-super-cache/faq/
How do I make certain parts of the page stay dynamic?
There are 2 ways of doing this. You can use Javascript to draw the part of the page you want to keep dynamic. That’s what Google Adsense and many widgets from external sites do. Or you can use a WP Super Cache tag to do the job but you can’t use mod_rewrite mode caching. You have to switch to PHP or legacy caching.
There are a few ways to do this, you can have functions that stay dynamic or you can include other files on every page load. To execute PHP code on every page load you can use either the “dynamic-cached-content”, “mfunc”, or “mclude” tags. The “dynamic-cached-content” tag is easier to use but the other tags can still be used. Make sure you duplicate the PHP code when using these tags. The first code is executed when the page is cached, while the second chunk of code is executed when the cached page is served to the next visitor. To execute WordPress functions you must define $wp_super_cache_late_init in your config file.
dynamic-cached-content example
This code will include the file adverts.php and will execute the functions “print_sidebar_ad()” and “do_more_stuff()”. Make sure there’s no space before or after the PHP tags.
<!--dynamic-cached-content--><?php
include_once( ABSPATH . '/scripts/adverts.php' );
print_sidebar_ad();
do_more_stuff();
?><!--
include_once( ABSPATH . '/scripts/adverts.php' );
print_sidebar_ad();
do_more_stuff();
--><!--/dynamic-cached-content-->
mfunc example
To execute the function “function_name()”:
<!--mfunc function_name( 'parameter', 'another_parameter' ) -->
<?php function_name( 'parameter', 'another_parameter' ) ?>
<!--/mfunc-->
mclude example
To include another file:
<!--mclude file.php-->
<?php include_once( ABSPATH . 'file.php' ); ?>
<!--/mclude-->
That will include file.php under the ABSPATH directory, which is the same as where your wp-config.php file is located.
Example:
<!--mfunc date( 'Y-m-d H:i:s' ) -->
<?php date( 'Y-m-d H:i:s' ) ?>
<!--/mfunc-->
I am having the same issue with Oxygen. You can see it here:
http://englishintirol.com/ESiT/full-width-test/
Tried the ‘.bbp-forums .hentry . . . ‘ as suggested above, tried playing with a variety of table settings, with no result. I’ve looked in Safari Web Inspector which suggests it could be in bbpress.css, tried playing around with bbpress.css as a result, also with no joy. Any help would be appreciated.
Is there a seperate back end that I am missing?
There must be options, I cannot think that bbpress is that primitive compared to all the other forum software I have seen.
Thanks
I think I’m looking and googling to find out how I’m doing step by step to change the language on my bbPress side but I find nothing. Maybe I’m bad at searching 
Someone who can “step by step” to tell me how and where I go to do it
Big thanks
Yes, I know. I wrote this is in my first post:
I see this on http://de.forums.wordpress.com and I know this is not the latest version running there.
Thank you for hoping with me …
No problem 
But again, YOUR question was regarding the http://de.forums.wordpress.com
I am a fresh user of bbPress, but as far as I can see that forum us the “old” stand alone version of the bbPress. At least the code says so in the RSS generator:
<!-- generator="bbPress/1.1-alpha-2539" -->`
In that case I am not the one that can help. I don’t even know who is leading the bbPress project 
Hope you get the help you need from others here!