Hi, coud you please suggest how to display users’s email addres or nickname (display_name) instead of user login in page header? bbpress 0.9.0.4
thanks
One of the things BBpress does really well is putting the horse before the cart.
Given that we skipped the last alpha, wrote off all the grand plans that had been coded to for 1.0a7, entirely skipped the beta stages, and released an RC thats not exactly been put through its paces yet… maybe just maybe we should hold off on getting on Wikipedia until, i dunno, the software is ready?
Apache version 2.2.11 (Unix)
PHP version 5.2.9
MySQL version 5.0.77-community
Architecture i686
Operating system Linux
Kernel version 2.6.28.8-VISION
It isn’t our job to promote unfinished and undeveloped software.
What Automattic’s marketing staff think about missed “reliable souces”?
OK, OK I know – it’s not my job too
Problem is, where would you find a site that talks about new software? BLOGS!
Review sites are blogs essentially if you think about it 
I mean, I don’t recall seeing phpBB in the news anytime recently..
While I have not reviewed Nightgunner’s code, that version is a completely rewrite so I suspect it avoids the pitfalls of the original version and is probably safe to use.
In your template file called front-page.php, find the section that outputs the table of forums (#forumlist) and make the cells taller or fixed width and variable height or something. It can all be done in your template files and your style.css.
Drag them into order in the admin area.
Yes, yes they can. You should NEVER have blank lines outside the wrapping <?php ... ?> (they cause all sorts of weirdness)
Good catch, magicgirl.
Never mind I figured it out.
<?php topic_posts($bb_post->topic_id); ?>
it seems i have no secure_auth_salt listed in options.php :S
@byles; ive replaced all security codes a few times
I’ve got the exact same problem, and it’s driving me mad.
I’ve tried to get this working on several fresh installs and it just ain’t happening!
Update: Oh! Fixed! I went to wp-admin/options.php and changed the salts to something else (button mashed), and updated those in bbpress too, and now it works. Don’t quite understand why nobody mentions this in any of the tutorials… Never mind 
Yes, you should create a page with the same name as the directory where you installed bbPress. So, if you installed bbPress in a directory called /forums/ create a page called “Forums” with a slug of “forums” and WordPress will use that directory before it ever shows your blank page.
If that does NOT work, there are simple plugins to redirect any WordPress Page to a URL, so you could use one of those if you wanted to do that instead.
With bbPress you don’t access bb-admin directly. You log in with your keymaster account, and next to your name, if you are truly a keymaster (or someone with admin capabilities) you have a link to Admin. Click that and you are in the bbPress admin. If you don’t have that link, then the account you logged in with is no the keymaster account.
What version of bbPress are you talking about, and are the logins integrated with WordPress?
// Custom Topic Starter Avatars
function topic_author_avatar( $size = '48', $default = '', $post_id = 0 ) {
if ( ! bb_get_option('avatars_show') )
return false;
$author_id = get_topic_author();
if ( $link = get_user_link( $author_id ) ) {
echo '<a href="' . attribute_escape( $link ) . '">' . bb_get_avatar( $author_id, $size, $default ) . '</a>';
} else {
echo bb_get_avatar( $author_id, $size, $default );
}
}
Congratulations on bringing bbPress to 1.0 RC1! I am a big fan of bbPress, appreciate this positive and helpful community, the great codebase, the ease of installation and customizatoin, and the overall more “bloggy” feel of the forums, rather than most forum software which feels a lot more like a 1990’s bulletin board.
I’ve looked over past postings about the 1.0 series and about releases in general. I’ve read that 1.0 is based off of BackPress, that it integrates with newer versions of WordPress, that it supports a new plugin for WordPress called “bbPress Live.” What else is of note? (and out of curiosity, what did not make the cut?
With 1.0 on the horizon, can you please summarize some of the key features/changes in 1.0?
Just a little Easter Egg for Release Candidate testers
So it’s only available in 1.0 huh, that sucks cause I think the forum is still using 0.9 something.
The way I’m doing it now is creating a plugin like chrishajer mentioned but it just seems odd to me as a prolific WP user. Unfortunately I’m not sure the forum can be upgraded since the Envato devs had to integrate it with a RoR app and hacked the core. Hopefully they can upgrade it cause the theme I’m working on is crazy complex and I had to add a lot of extra functions to my plugin to make the theme work based on the design. I just think some of the code I wrote is probably included in the 1.0 core.
There’s a good overview of bbPress’ translation framework (with links to existing translations and to useful posts) on bbshowcase.org:
http://bbshowcase.org/forums/topic/bbpress-translation-internationalization-into-local-languages
According to that, bbPress uses the same translation approach as WordPress:
https://codex.wordpress.org/Translating_WordPress#gettext_files
The approach seems to be:
1) You download the POT file, which has all the English strings in it.
2) You translate the strings into your language (Greek) and save the file as a .po file
3) You optimize the .po file into a machine readable .mo file
Looks like you can get the bbPress POT file for whichever version you’re using here:
http://svn.automattic.com/bbpress-i18n/pot/tags/
Good luck!
.. the latest bbpress with the latest wordpress. Could I use the bbPress forum list loop on the frontpage of my wordpress theme? so i can show all the latest discussions.. this wont be on a sidebar, so i dont want a plugin to do this, I just want to use the same code bbPress uses but on WordPress to show the forum topics?
is this possible.? thanks in advanced.
FCK editor. I added FCK into my theme and that is the root of tag problem in my case. when I remove FCK script from head.php, tag functions starts to work again.
so, now i have to figure out if its possible to have both (probably it is, but its not easy for me as I am not developer
Here’s my working Plugins, transfered from Alpha6 to RC1 without any adjustment:
- Accurate Post Time
- Admin Can Post Anything (_ck_)
- Allow Images
- Avatar Upload
- BBcode Buttons Toolbar (_ck_)
- BBcode Lite (_ck_)
- bbPress Polls (_ck_)(there’s a little oddity when trying to delete polls but it worked on second try, might have to watch this one more closely)
- bbPress signatures (_ck_)
- bbPress Smilies (_ck_)
- bbSocialize
- BBVideo
- Censor
- Check For Updates (_ck_)
- Edit History (_ck_)
- Hidden Forums (_ck_)
- Hidden Forums Tag Filter (_ck_)
- Human Test for bbPress (_ck_)
- Mini Stats (_ck_)
- Mini Track (_ck_)
- Page links
- Post Count Plus – Dynamic.Titles & More! (_ck_)
- Post Edit Look Behind (_ck_)
- Quote
- Related Topics (_ck_)
- Super Search (_ck_)
- Support forum
- Topics Per Page (_ck_)
- Unread Posts (_ck_)
In fact, I didn’t have a single plugin that was not working but for the WP shared logins of course. I didn’t have the chance to test every little setting of these but the basic functionality works.
bbPress de-registers all API hooks at initialisation. That means that WP plugin code is available, but none of it’s API calls are set to go off anymore.
The best solution is to port the original plugin to bbPress and deliberately hook into it’s distinct API hooks. Very few WP plugins will “just work” with bbPress.
I’ve just committed code to trunk [2096] to make this easier to achieve.
In your template you just need to use the post_form() function like so:
post_form( array( 'last_page_only' => false ) );
Obviously this is an old post but it didn’t really give any answers and the link is to a PHPBB install.
Can anyone tell me how to add a dropdown to change between forums? The function below lists the forums in a select options list, but I need a way to submit the options to a form that would switch forums. What would the action and method be? I’m running short on time and need to get this working asap so any help would be awesome.
<?php bb_forum_dropdown(); ?>