Ok, they’re using prototype and the toggle function. That’s what you would need to use to get that look.
http://ajax.googleapis.com/ajax/libs/prototype/1.6/prototype.js
The element you would target is already there in the output, .bb-category.
I just tried including wp-load.php from another WordPress site on the same server, like this, and it worked just fine:
require_once('../../dev/wp-load.php');
Maybe our PHP or server configurations are different. But this worked fine and did not error out. I also tried just including a test.php file that I created in the same directory (the file is empty) and that works fine too. PHP doesn’t care what’s in that file (or if there is even anything in there at all), so long as there is no syntax error.
Can you try to require_once some other random file in the same directory as wp-load.php? Just create a file called test.php in the directory as wp-load.php and try requiring that without requiring the wp-load.php. If it does not error out, then you probably have the path right and the system is configured to allow this type of file inclusion.
Also, if anyone has access to php error logs, that will help pinpoint the problem. Or, you can temporarily display errors to the screen, or create a custom logging. The blank screen tells you there IS a problem, but not WHAT the problem is. We’re just guessing without knowing the actual error.
I know this post is rather old, but none of the above suggestions worked. The problem with using the post_author_link or even get_user_link filters is that those only filter the “href” attribute, not the entire “a” tag. That means you can’t add rel=”nofollow” using those filters.
I wasn’t able to figure out a way to get it done without editing the core. I suggest the post_author_link() function around line 1747 of bb-includes/functions.bb-template.php be edited to allow the option of only returning the link rather than echoing it. That way, you can output the author links in your template (post.php) using something like this:
<?php bb_rel_nofollow(post_author_link(false)); ?>
With the “false” parameter telling WordPress to return the link rather than echo it. I believe that would work for future releases.
As for now, I believe you’ll have to open bb-includes/function.bb-template.php and edit the post_author_link and post_author_avatar_link functions to add rel=”nofollow” to the “a” tags. Those functions begin around line 1747 of bb-includes/function.bb-template.php.
Hope that helps.
rlebowitz – Thanks for sharing the files!!! 
I received four files: footer.php, header.php, login-form.php, and style.css.
I was surprised there was no plugin file, but then I realized: the programmer must have fixed the issue by editing the templates, not the plugin. I’m pretty sure most of the changes to the footer/style files are cosmetic… which leaves login-form.php and header.php as potential sources of the fix.
I haven’t finished auditing the files, but maybe the reason Instant Password doesn’t work in 1.0 is that there’s some sort of conflict between the login-form page and the plugin?
Here’s the edited login-form.php:
http://pastebin.com/S8bcsw13
Then header.php calls that file:
http://pastebin.com/kJCc7Cbv
Can someone on 1.0 try out these templates and see if it resolves the issue for you?
If anyone can figure out the exact change that fixes the plugin, that’d be even better!
I FOUND THE PROBLEM!! YAAAAAAAY!!!
I had to go into my mysql database and had to delete the last change in my bb_meta which was a change with sth. like wp_ prefix.
I’m so happy now. 
Zat.
JPEG’s:
That was the change I made which produced the error:
http://drp.ly/wuZ2p
This are screens after solving.
http://drp.ly/wuP7T
http://drp.ly/wuSg7
http://drp.ly/wuRd7
I emailed you!
If you send it over, I’d be happy to diff the latest code to yours and post details on what code changed… 
Thanks!!
If you paid for the code and own it, please consider releasing it under the GPL2 license and having it added to the plugin repository. Thanks for getting this done.
Hi,
Frustrated at not being able to install Instant Password and getting it to work on either 0.9 or 1.0, I hired a coder. (Yes, I outsourced to Asia. Sorry.)
Anyway, since people have helped me here, I would be happy to forward for free the files to make it work to anyone who wants them. Email me at rlebowitzATyahoo.com as I don;t check these boards so often.
It works well now.
Thanks,
Robert
John,
Thanks so much for this post. I checked back too late though and hired someone to code instant password for me in 1.0. He did a nice job.
If anyone wants the files, I’d be happy to share, since people (like John) have been very kind to me here. Contact me at rlebowitzAT yahoo.com.
R.
hi, i’ve added the code require_once(‘/path/to/wp-load.php’); on my bb-config.php in a subdomain of my site but when i try to visit the site i see only a blank page… any idea to resolve this issue?
my installation is: wp 2.9.2 and bbpress 1.0.2
thanks!
Here is my bbPress resource page 
http://blog.ashfame.com/bbpress
I have one particular forum for which I would like the threads in that forum to NOT appear in the latest discussions list. Is there a small bit of code I can add to do this. I would also love it if there was an additional column that indicated the forum that the thread listed in “Latest Discussions” came from.
@karma1981 – That’s a bug with the plugins page… there are two issues:
1) The download only works if you are registered, for some reason. So first, you have to sign into the plugins install.
2) The signin isn’t automatic because bbpress.org/forums and bbpress.org/plugins are using different versions of bbPress and don’t have cookies integrated.
So in short: sign into the plugins page, and the download should work!
Oh you top man Tom! Yep, worked first time, perfect.
Over on the other forum at: https://bbpress.org/forums/topic/how-to-keep-just-display-name-which-links-to-profile-in-posts#post-58301
they tried this, which didn’t quite work;
<a href="http://www.example.com/forum/profile/<?php bb_get_profile_link(post_author()); ?>">
<?php bb_get_profile_link(post_author()); ?>
</a>
I’ll mark this thread as resolved then, and put a link to here on there. Nice one, thanks.
James
Usernames can have a space in them because there is also a user_nicename set. This is all lowercase and any spaces are replaced with underscores. If you look at the link to your member page here you’ll see it ending in ‘james-blacker’.
I presume you’re wanting a link to the profile page when you click on a username.
To do that you need to something along the lines of
<a href="<?php user_profile_link(get_post_author_id()); ?>"><?php post_author(); ?></a>
Ah, I’ll change that back to 10 then.
Thanks, Tom. Just having a read of the codex now.
Cheers,
James
Presumably if I changed (or removed) the spelling of the codes in the names (not that I will), it would break and any info people had put in previously would be lost.
Only if you changed the name of the value. i.e.
'first_name' => array(0, __('What do they call you?')),
should be fine, as long as the first_name stays intact.
And I’ve increased the number parameter at the end of your add_action(‘extra_profile_info’, ‘add_descriptions’,15); – even I could work out that was important.
That number is the priority that the function should get in relation to everything else that’s loading on the page. Read about that here: https://codex.wordpress.org/Function_Reference/add_action
My code, btw, was at point got from this forum somewhere, so I can’t take credit for it. But it shows that anything in the functions.bb-pluggable.php file is easily replaced or manipulated.
That’s great! That’s brilliant Tom, thanks very much. I was obviously missing a few commands there!
Thanks both of you, you just made a lot of integral practitioners very happy with their new found ability to register what they’re doing with their practice for mind, body, spirit and shadow on their new forum. Here’s the handiwork in action: http://wholelifewholeworld.com/forums/profile/james-blacker
Presumably if I changed (or removed) the spelling of the codes in the names (not that I will), it would break and any info people had put in previously would be lost.
And I’ve increased the number parameter at the end of your add_action(‘extra_profile_info’, ‘add_descriptions’,15); – even I could work out that was important.
Tom, if you’re on a roll, do you have an insight for the one I posted on why linking poster names to their Profile doesn’t support usernames with spaces? Presumably you’ve linked Posts to people’s Profiles on your forum having done the extra work to modify your own profile pages?: https://bbpress.org/forums/topic/are-usernames-with-spaces-sensible
Thanks again, both, greatly appreciated.
Cheers, James.
PS. Paul, no relation to my colleague, Gary Hawke, presumably? http://integral-uk-symposium.wholelifewholeworld.com/meet-the-people/gary-hawke/
What you are saying, basically, is instead of using the built in profile form use mine. So you need to replicate it then add anything, or take out anything you want.
I’ve done that on my site so people can put in a visible email field for others to contact them, and added an explanation for the signup page.
function extra_profile_keys() {
return apply_filters(
'extra_profile_keys', array(
'first_name' => array(0, __('First name')),
'last_name' => array(0, __('Last name')),
'display_name' => array(1, __('Display name as')),
'user_email' => array(1, __('Email'), 'email'),
'user_url' => array(0, __('Website'), 'url'),
'from' => array(0, __('Location')),
'occ' => array(0, __('Occupation'), 'role'),
'interest' => array(0, __('Interests')),
'visible_email' => array(0, __('Visible Email')),
) );
}
function add_descriptions() {
echo '<fieldset><legend>'.__("Visible Email").'</legend>';
echo '<p>'.__("<span style="font-size: 1.2em;">Visible Email allows you to place an email address so others can contact you. This is visible to ALL!</span><br/>e.g. <span style="font-weight: bold;">meATexampleDOTcom</span>").'</p>';
echo '</fieldset>';
}
// hooks
add_filter('get_profile_info_keys', 'extra_profile_keys');
add_action('extra_profile_info', 'add_descriptions',10);
What I haven’t figured out is how to create checkboxes and other form elements instead of just fields.
I lifted the following list from functions.bb-core.php where bbPress defines the set of fields that should make up the user profile:
'first_name' => array(0, __('First name')),
'last_name' => array(0, __('Last name')),
'display_name' => array(1, __('Display name as')),
'user_email' => array(1, __('Email'), 'email'),
'user_url' => array(0, __('Website'), 'url'),
'from' => array(0, __('Location')),
'occ' => array(0, __('Occupation'), 'role'),
'interest' => array(0, __('Interests'))
If you want any of these fields to appear in your custom profile, you will need to add them to the list of fields you were building. Basically, the filter in your plugin takes over defining the definitive list that will be used, not a list of additions above-and-beyond the defaults given by bbPress … least I think that is what the code is telling me!
Instant Password definitely works in 0.9. I have it installed on 12 separate 0.9 installs. 
But until you can hire someone to upgrade Instant Password to work in 1.0, your best bet is probably making sure that your server is configured to be able to send email.
Chriahajer wrote a great post on it here:
https://bbpress.org/forums/topic/registration-email-not-being-sent-new-issue?replies=15#post-6931
If your server isn’t sending out email, you could also install this plugin… to give bbPress access to an SMTP mailer:
https://bbpress.org/plugins/topic/smtp-mailer-for-bbpress/
Is it ‘done’ to choose usernames with spaces? I’m just looking at this forum homepage, and I’m the only one who has chosen one, which is also why I have a problem with links from Post to my Profile on my own discussion board, even though it works for users who have an unbroken string as a username. Obviously, looking at the URL’s it’s the space that stops it being found, but given that the system (both, in fact) allowed me to choose a username with a space, is that no reasonable? Givem that it’s functionally possible, it would be poor to say to my subscribers to not use spaces.
Here’s the example of posts where link to my profile doesn’t work, but the link to another (non-spaced) user does;
http://wholelifewholeworld.com/forums/topic/everything-respectful-and-supportive
http://wholelifewholeworld.com/forums/topic/ilp-practice-session-2912010
And here’s the change I made to the post.php code, putting in; `<a>”>
<?php bb_get_profile_link(post_author()); ?></a>` – is this not the best/quoted way to do this?
<div class="threadauthor">
<p><strong><a>">
<?php bb_get_profile_link(post_author()); ?></a></strong>
<small><?php post_author_title(); ?></small></p>
</div>
Thanks,
James