I just checked out 1.0.2 via svn and I see backpress is included as an external:
Fetching external item into 'bb-includes/backpress/pomo'
A bb-includes/backpress/pomo/mo.php
A bb-includes/backpress/pomo/sample
A bb-includes/backpress/pomo/sample/app.php
A bb-includes/backpress/pomo/sample/languages
A bb-includes/backpress/pomo/sample/languages/app.pot
A bb-includes/backpress/pomo/sample/languages/bg.mo
A bb-includes/backpress/pomo/sample/languages/app-side.pot
A bb-includes/backpress/pomo/sample/languages/bg-side.mo
A bb-includes/backpress/pomo/sample/languages/bg.po
A bb-includes/backpress/pomo/sample/languages/bg-side.po
A bb-includes/backpress/pomo/po.php
A bb-includes/backpress/pomo/streams.php
A bb-includes/backpress/pomo/entry.php
A bb-includes/backpress/pomo/translations.php
Checked out external at revision 191.
It’s actually included in the packaged download here too:
https://bbpress.org/latest.zip
https://bbpress.org/latest.tar.gz
I don’t think using trac to grab the source is the same as actually downloading the package. Maybe that was the problem?
It does. 
<?php printf(__('%1$s'), bb_get_profile_link(bb_get_current_user_info( 'name' )));?>
I paste this code
into my-profile-fields.php file
into my-plugins
but its not working !!
this code :
<?php
/*
Plugin Name: My Profile Fields
Description: My profile fields for my lovely forums
Version 1.0
*/
function my_profile_fields( $fields ) {
/* This removes the Occupation profile field: */
unset( $fields );
/* This adds a new optional field called Favourite Band: */
$fields = array(0,’Favourite Band’);
/* This adds a new *required* field called State: */
$fields = array(1,’State’);
/* You must return the array at the end of the function: */
return $fields;
}
add_filter( ‘get_profile_info_keys’, ‘my_profile_fields’ );
?>
I’m trying to install a new bbPress forum at http://forums.morganwick.com. The “wrapper” div is set in style.css (the only file I’ve changed) to have position:static. It appears to be absolutely positioned, and I don’t see anything in either style.css or in the code that appears when I “view source” that would overrule style.css (the only places in style.css where anything is absolutely positioned either have “display” set to “none” or don’t appear on all pages) unless I have to go hunting through JavaScript. Having to deal with absolutely positioned elements is a pain for an amateur developer like me, and I’d much rather have elements appear as part of the normal flow, like I can do in WordPress; what’s the problem here?
UPDATE: I just removed the background image from “wrapper” and added it to “header”, but it doesn’t show up at all. I’m trying to make it look as much like http://www.morganwick.com as possible.
I’m sure it has to do with if and else things but how to code it
Did you paste the code into a my-profile-fields.php file, and move it into your my-plugins directory… then activate the plugin?
sorry but Its not working
Is there another way ?
For example, put in the code style.css ?
@batrachoid are you using IE 6 or IE 7 because I just checked the site in IE 7 and the login form and registration info were almost completely hidden.
I’ve fixed the problem now, although it still doesn’t look quite right in IE 7, but at least it can be seen and people can register now
@batrachoid,
? It’s right above the login form. 
Looks good, the only thing I noticed you might want to address is that when you’re not logged in and viewing a post page, the “You must log in to post” appears floated to the right and a little above the “New Topic In This Forum” header.
Honestly can’t say I’m a fan of the green, and I’m not too sure what the red, green and white dots are for either?
I don’t want to be the only person with issues, but I’m sure you guys are capable of handling criticism.
Outside of those two things, I think it’s looking pretty darn snazzy. Can’t wait to see it go live!
It’s a microwave dinner world… I hate registering on sites that have a mile long page full of demographic information that is an absolute invasion of privacy – I usually move on when I come across those. But when registration consists of username+email+submit… if it ain’t microwaveable, it ain’t worth the effort, I guess.
@gerikg,
Thanks for the link, I downloaded that plugin to give it a go… but apparently it isn’t yet compatible with 1.0.2 as it won’t activate. Just keeps returning a failed notice.
That very simple error means that the file is not there, or maybe it’s there but has wrong permissions.
Is this file present:
'/XXXXX/StealthEmployed/forum/bb-includes/backpress/class.bp-log.php
If not, FTP the files up there again maybe one was missed. I don’t think it has anything to do with WordPress because it’s bb-settings.php complaining about a missing bbPress file.
bbP’s database is essentially the same as WP’s
that’s how I can actually work out how to manipulate it most of the time. Basic functionality is the same, just different variables so you can get the table name for forums, etc. Give writing it a shot though, it’s not hard.
Fixed it.
I logged into phpMyAdmin
Default Database Setting on My Server:
MySQL connection collation: utf8_unicode_ci
I changed it to utf8_general_ci and deleted the bb_ tables in the database and removed the bb-config.php file and went through installation again.
All appears to be good now.
I’d do this but I simply haven’t got the time. It’d be easy enough to store meta data if you added an action hook for ‘bb-post.php’ that got all the event-related form data from the post form and WP’s database handling makes storing it a breeze, so that wouldn’t be too hard. Throw in a ‘bb_head’ action hook to pull up data for a given topic (do a is_topic() check and check the forum ID, that’s floating around in a global variable iirc, probably $forum), load it into global variables and then let those be added in by the template. Main issue for me would be the testing and actually having to support something after I write it for once
Easiest way would be to add <?php $post_forum = bb_get_forum( $bb_post->forum_id ); echo $post_forum->forum_name; ?> inside your theme’s rss2.php, after it says <?php foreach ($posts as $bb_post) : ?>, possibly inside the <title> part.
i.e.
<title><?php post_author(); ?> <?php _e('on')?> "<?php topic_title( $bb_post->topic_id ); ?>" <?php _e('in')?> "<?php $post_forum = bb_get_forum( $bb_post->forum_id ); echo $post_forum->forum_name; ?>"</title>
strange is that without these replacements the posted code / content is formatted as well.
the make sense of you have all posted html elements without any whitespace.
Back to the reason why I started this topic, it’s not an important one right?
Use:
overflow: auto and max-height: 100%
to give it a nice scrollbar if it’s too big
That code seems to work fine here, what problems are you having? Apart from not having any limiter to keep it at 10 topics anyway.
I’m trying to show the last ten posts in my sidebar, but I am not entirely succeeding, what am I doing wrong? I thought I’d just need to adjust the code from latest discussion a bit. Obviously it doesn’t work like that.
<table class="recent_posts" cellspacing="0" width="100%">
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></td>
<td><small><a href="<?php topic_last_post_link(); ?>"><?php topic_time(); ?></a></small></td>
</tr>
<?php endforeach; endif; // $topics ?>
</table>
So how can I call the latest ten posts in the sidebar?
Try putting this in your stylesheet:
/* Tags */
#front-page #discussions {margin-left:inherit;width:inherit;}
div#viewdiv,div#hottags,div#topic-tags,p#post-form-tags-container{display:none;}
It hides the tag-related things in a basic Kakumei install
At the moment, I’m actually hardcoding the information for an event page, into a php file. It’s not the best solution ever, I knows.
I was hoping that someone here would want to code an events plugin.
Basically this is what I would like it to have or what I have in mind:
You browse to the section of the forums where it says “events”, you click create a new topic, then it will ask you to fill in the following fields:
Name of event
Date of event
Name of place
Address of place
Bands (since I run a music website)
Topic description
The output of this will be as you can see in the screenshot.
http://www.metalsuriname.com/images/event-plugin.png
I hope you get a bit what I want as a plugin.
I know I can’t ask for a plugin to be made working for my own website only, perhaps some section can be made optional (the band section, that could be custom?), apart from that, I think this plugin will be beneficial to a lot of users.
I really need this plugin, if you like you can add me on your gtalk.
navin.poeran@gmail.com is my email.
Is there any rule one can set in order to prevent the hottags to spill over the footer?
I have this into style.css
#front-page #hottags {
position: absolute;
top: 0;
left: 0;
width: 150px;
overflow: hidden;
}
but it does not seem to be enough: http://www.kirpi.it/r/page/2
delayedinsanity, Thanks a lot for the clarification. I found your response prompt & sane (unlike your name)