I’m running bbpress integrated with WP on a spanish website.
While the blog itself (http://www.tecnosquad.com/) is succesfully loaded with UTF-8 encoding, the forum (http://www.tecnosquad.com/foro/) loads as ISO-8859-1.
When looking at the meta headers, I can see that both the blog and forum have this line:
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ />
And I can’t understand why the blog success where the forum fails. Any ideas?
Just checked. I would go back and read the documentation one last time 
Trent
If you are not trying to send ‘content’ from forums, I would do what chrishajer is saying. Integration of bbPress and WP has both using the WP users, so why re-invent the wheel and use the WP plugin!
Trent
I for one am not sure what you are looking for.
Are you looking to use the email addresses from the bbPress installation to send out an email newsletter? So, the registration emails become your mailing list? What will the newsletter content be? Is the content from your forums? And if so, what content will be sent?
Also, if people did not opt in to your newsletter (they just registered on your site), you could be spamming them with a newsletter they didn’t ask for. That’s illegal in the US (CAN-SPAM compliance) and might be illegal in other countries too.
The source code looks fine now, but it’s plugin page turned everything in the readme file into a tag!
Note: using id="current" in this way is dodgy because plugins have to generate content that co-operates with other plugins.
If another plugin also uses id="current" the page will not validate (because each ID (identity) should be unique).
You could just say id="X8VQm2_current" but (a) it would look ugly and (b) regardless, you’re not changing the identity of the row, you’re just saying something about it, so using ID is still wrong.
The solution is easy: use class="current" instead and adjust your css so that instead of #current {} you use .current {}
The example I wrote for you before shows how to do it.
There is a painful habit of mis-using the id attribute among many theme designers and that makes it difficult to know what to do or why to do it
Thanks for your reply. Let me give you more information about what I want to do. Think about newsreader programs like outlook express or thunderbird. There is a three pane view. On the left there are topics, on the up-right there is a three view and on the right-down there is a reading pane. And furthermore, when you read a post, the color of the post is changing. Therefore read messages and unread messages are in different colors (at least unread one is bold). At the and you can easly see what posts you read and what posts you haven’t read.
When it comes to our case, I want to implement a similar thing. I want to show forum messages in a three view structure. This is first step and lucky It doesn’t seems hard. By adding some hierarchical structure into database, I think I can acchive this. What is hard is second step.
In second step, I want to keep what reader read. So that on whichever computer user log in s/he can easly saw which posts she read, and which one she haven’t read. As in case of news reader program. But instead of keeping it locally, I will keep each users history in the database. And here your suggestions come. How should I keep what posts users have read? The simplest idea is to make a table (id, userId, readPostId) and whenever reader open a topic, checking which posts in this topic are read. But thinking about all the users, and posts that each one is read, I am a bit scaring. Will it be a total faiulere?
Don’t confuse it, I didn’t want to make a web based news reader. I am going to use bbpress, just some modifications, a different view and an extra feature. I think it’s more understandable now. Thank you in advance, for your suggestions.
This is a great plugin! Did you submit it yet?
Trent
Not really sure what you are after here, but Thomas has created a plugin called Online that keeps track of the posts since you were last logged in. That to my knowledge is the only plugin that keeps track of things since your last visit. You can find that at https://bbpress.org/plugins/
Other than that, maybe someone else can read this and give you some other feedback on where to start and where to start looking! Sorry I can’t be any further help without a little more info on what you are trying to do.
Trent
Graphic Display Ranks has been updated. Here are the changes:
- Added the ability to display a “special” graphic for Key Master and Moderator
- Added the text “#Posts: {n}” to the alt and title of the image that is displayed.
- Cleaned up some of the code.
Read all about it here.
Hi everybody, I am new to bbPress. I’ve been using wordpress for a while but never used bbpress. What I want to do is to add treeview display to bbpress including posts. And I want to keep history of users so that s/he should be able to see the posts that she read and unread. Therefore somehow I need to keep each users’ read posts. Before doing anything, is bbpress right choice for those modifications? Are there any similar plugin to start with? As bbpress experts what do you suggest where should I begin? How should I keep database tables for regarding performance? I think you get the idea, if you have any idea, it would be really helpfull.
Actually, when integrated both programs use the users of WP. If you delete a user in program they are gone in both. You can change roles around in either program and it doesn’t affect the role in the other. If you have a user in WP and don’t want them to post in bbPress you can change their bbPress role to inactive. All they would have to do is register another user to post though. WP is different. Registrations in either program creates user in WP with default role until you change that
Trent
Thanks very muck.
Where is the POT (or po)file for bbPress 0.75?
Hello everyone,who has upload on po file for others languages to 0.75.
Could you show give me one?
Thanks.
Oh… another thing… in this scenario if I delete an author in bbPress, will it get deleted in WP?
Trent, Thanks… so if I delete an author in WP, I need not worry about it in bbPress. But if I change an author to a subscriber and don’t want him/her to access bbPress then I need to go and delete the author in bbPress. I hope I got this right…
If your bbPress install is using WP user integration then it uses the WP user table. It doesn’t use the WP roles though. Changing a role in WP doesn’t change a role in bbPress. Really in bbPress you are just a member or not unless they are an admin. You have to change the role in both programs if you have a desired role in mind
Trent
Does it transcend over to bbPress, if I have the WP-bbPress integration plugin in place… at times I remove authors from WP or modify their rank from author to just subscriber… will all these show in bbPress…
if I change an author to a subscriber in WP, will that person be still able to log into bbPress?
I am fleshing out my plugin Graphic-display-ranks and I’m looking for the right hook to use to do the following:
I want to find out if a topic author is the Key Master or a moderator. Here is what I have so far —
function get_special_rank () {
global $special_rank, $use_special_rank, $bbdb;
if ($use_special_rank==1)
{$title_for_rank=<strong>I NEED THIS HOOK</strong>( get_post_author_id() );
switch ($title_for_rank) {
case "keymaster" :
$special_rank=1;
break;
case "moderator" :
$special_rank=2;
break;
default :
$special_rank=0;
}
}
else
{
$special_rank = 0;
}
return $special_rank;
}
Can anyone point me in the right directon?
I want to place everything within a DIV so that I can center it and then give it a background. If you look at stylebuffet.com/forums, you’ll see I have kind of got it, but I want the white to go all the way uo nd down like it does here on the BBpress forums. Can anyone help?
Like this guy did here where there is the grey background and then everything else is in white
http://www.travel-junkie.com/travelogues/community/
If I can figure this out, I know i can do something really great and might be able to come up with some very neat themes for this community.
Hello, I would like the function to send newsletter by email to members in my bbpress forum! I know the emails is saved in the database (or?) so this would not be any problems to integrate or make an plugin, i think. The only problem is that I’m not the man for this job
Greets:
Just a quick silly question about my own bbpress install. I don’t see an answer by searching so…
I can’t get the bb-cache to activate. I’ve made the bb-cache subdirectory writable but nothing’s showing up in there.
Thanks,
-drmike
BBPress seems to use the kind of cookie that resides on the user’s machine unless they actively log out.
Can anyone help me modify/ add custom code (or point me to a useful plug-in
) so that its lifetime is limited to the session only?
Also, should I be using something like session_cache_limiter(‘nocache’) for further privacy, or is this already taken care of?
I have recently installed the excellent Private Forums plug-in as an alternative to using the more cumbersome HTTP authentication method, which has prompted me to think about this potential security issue. Private Forums is only truly secure if the user remembers to log out.
I just wish they’d include the Forum Categories enhancement into .80 though lol. It sure Would Be NICE!!! LoL 
/It IS working just great by the way, I didn’t see any flaws with it..

spencerp
Anonymous User 96400Inactive
hey,
i’m having a problem with integrating bbpress into my wordpress template. when you click on ‘add new’ on any forum page the layout looks fine, but when you click on ‘add new’ on the start page, then it messes up the layout. seems there is a stray closing div somewhere, which is only needed sometimes.
have a look here to see what i mean.
actually, if you scroll down i think you can see the same thing happening with the footer here
cheers, b