Yes i use bbpress for Rpg
because it’s fun to b a young

_____________________
any comment
“I think that if someone plays a video game, and then goes out and harms another human being, or themselves because of what they just saw in the video game, they were screwed up in the head long before they got their hands on a controller.”
I am using a great plugin called “WordPress Access Control” right now and I really like it.
I don’t understand how to assign any particular role to being able to use the forum.
The instructions from this page seem to be outdated:
https://bbpress.org/documentation/integration-with-wordpress/
“In the “WordPress Integration” section of the “Settings” area in your bbPress admin you will find a “User Role Map” where you can set which roles will be applied to users who register on your forums. Users who register on your WordPress blog will have the appropriate role applied to their account when they first login to bbPress.”
I didn’t notice any “User Role Map”, but I could be easily mistaken.
How are these things handled in the current version of bbpress?
This seems like a pretty fundamental thing(?)
Has the same issue. I created “my-languages” folder, but bbPress does not pick up mo and po from it. I also look to find the way to make it compatible with qTranslate.
Hey everyone,
Is it possible to have multiple forums for different groups? For example if you go to my website…. http://studentbookmarket.com/ and click on ‘Michigan State University’ I have multiple forums set up however if you click on any other school i don’t have any forums on those pages. Is there a way to have personalized forums set up for different pages. I have bbpress and buddy press set up.
Thanks
You should be able to make a new role and only add the bbpress capabilities to it. Try something like jason tadlocks “members” plugin if you want to use a plugin to do this.
I’m using BBpress for my L5R writing/roleplaying community, though it’s still under construction. I would also be interested in a dice roller with the kind of functionality Myth-weavers has for theirs. If anyone knows of any, I’d appreciate it as well. Otherwise, I may just have to break down and figure out how to write my own.
Hey everyone,
Is it possible to have multiple forums for different groups? For example if you go to my website…. http://studentbookmarket.com/ and click on ‘Michigan State University’ I have multiple forums set up however if you click on any other school i don’t have any forums on those pages. Is there a way to have personalized forums set up for different pages. I have bbpress and buddy press set up.
Thanks
hi citizenkeith, do you run the /tools/recount after import, like anointed préconise juste 2 replies before yours?
Will a future update correct the “freshness” date? As is, it’s the time of the conversion, not the actual freshness of the topic/post.
I am new to WordPress and bbPress. I have a WordPress 3.3 site with bbPress installed in its own directory. I went through all the steps for WordPress Integration and all the WordPress users show up as bbPress users so that is good.
The problem is I thought that a logged in WordPress user would be logged in to the bbPress section when they go to the forums. But they are not. They have to log in again.
Is this how it works or is there another step that I need to get full integration?
De po-file lijkt me niet compleet, er zijn nog een hoop teksten die in Engels worden weergegeven. (Of heb ik het mis?)
Ik heb nu zelf een hoop vertalingen gedaan, maar in de code zelf. Dat is natuulijk niet de meest handige oplossing, want bij upgrades van bbPress zou ik die weer kwijt zijn.
Kun je zelf vertalingen aan de po-file toevoegen?
Wil eventueel helpen bij verder vertalen van bbPress, indien nodig!
Hello!
Installed bbPress and created a custom theme. All worked well, but
changing permalinks from None to Name based result in ‘Page not found’ error.
When changing back to None, all works fine!
URL of Forum: http://forum-zeldzame-netwerken.nl
(in Dutch)
Any suggestions?
Thanks!
Is it safe to upgrade to WP 3.3 with BBPress 2.02 or should I wait for BBpress to be updated?
I just had the same problem but figured it out.
Probably not the cleanest solution but it works
go to the bbp-themes/bbp-twentyten/bbpress/ folder
open forum-topic.php
search for “form-allowed-tags”
select and delete
<?php if ( !current_user_can( 'unfiltered_html' ) ) : ?>
<p class="form-allowed-tags">
<label><?php _e( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:','bbpress' ); ?></label>
<code><?php bbp_allowed_tags(); ?></code>
</p>
<?php endif; ?>
Thx for our work. it’s really cool 
i try to import 169 000 post of my phpbb, it’s very very very long
thx again
@Steve
Did you run the /tools/recount after import?
That is what sets the dates, user counts etc.
Import tool seems a little trial and error…
I have a relatively modest ‘standalone’: 324 Registered Users and 1,573 posts.
Backups done, plugins switched off, default template chosen; imported users apparently okay – though luckilly I did work out that it changed my wp login credentials to that of the bbpress standdalone – my wp-admin old admin account login no-longer functions – but hey, probably better for security 
The next stage of importing forums and topics stalled. Now if I try and start again I get the “There was a problem dropping the wp_users and wp_usermeta tables… …or drop the tables yourself” message.
What to do next?
Thanks
Well, this was a mess. I went to bed during a conversion and the computer went to sleep too.
Apparently, clicking restart checkbox actually restarts converting the same forums again and so there were duplicates created. I deleted everything via the admin panel and started without clicking the restart started the conversion at the same place I left off of the second attempt but the forum slugs used -2 after all of the forums. I tried again checking “clean out” but this did not fix this -2 problem because the script picks up where things left off….
Should I go into the db and clear things out and start again?
Update: I just looked in the database and wp_bb_ tables are all empty. So, where are these forums being kept?
This is a multisite. WP 3.3. Conversion was (is??) vBulletin to bbPress. vBulletin was kept in its own database, separate from WP.
I had the same problem, just looked at your site with Firebug and the solution I came up with should work for you as well:
https://bbpress.org/forums/topic/comment-alignment-is-messed-up
You’ll find the .reply you have to edit at line 7 in your style.css of your frailespatique theme.
I had to use the following code in order to get it to work:
!(is_post_type_archive( ‘forum’ ) || is_singular( array( ‘forum’, ‘topic’, ‘reply’ ) ))
I needed to use is_post_type_archive() in order to get the widget to disappear from the forum index because none of the following tags worked:
!is_page() (tried with slug, id and title)
!is_single() (tried with slug, id and title)
!bbp_is_forum()
!is_page_template( ‘page-front-forums.php’ )
as well as a bunch of other stuff I forgot. Does anyone know if there is a simpler tag that I can use?
I had to use the following code in order to get it to work:
!(is_post_type_archive( ‘forum’ ) || is_singular( array( ‘forum’, ‘topic’, ‘reply’ ) ))
I needed to use is_post_type_archive() in order to get the widget to disappear from the forum index because none of the following tags worked:
!is_page() (tried with slug, id and title)
!is_single() (tried with slug, id and title)
!bbp_is_forum()
!is_page_template( ‘page-front-forums.php’ )
as well as a bunch of other stuff I forgot. Does anyone know if there is a simpler tag that I can use?
OK, the extension messing up BBPress was : “Greg’s High Performance SEO”
Thanks for your help!