Oh! Okay, the way I heard it, from Trent I believe it was.. that it went in both locations.
Alrighty then, then this changes my whole plan of doing things. YAY!
Well, the theme I made up for the forums now, doesn’t include any WP functional calls, or whatever. But, I’ll release the theme as a normal bbPress theme first. Then, I’ll go back to customizing it like I wanted too!
http://spencerp.net/forums/
Thanks a million mdawaffe (Michael), for clarifying this!

spencerp
–selfish bump–
I coded around this (hack!) to make it work with PHP5, but is anyone seeing the same type of results that I was with PHP5?
I like it, although at the bottom, “fueled with wordpress” that would be fueled with bbpress wouldn’t it?
Thanks Vaelrith.
Yeah, It’s one of those “things” that I need to change up on theme. I’ll fix that up here soon..
Really, I need to fix up the blog theme’s footer too then..
this is a great looking theme, you’ve integrated it nicely with the blog
Are you going to make it a public theme? It’s quite sexy ;p
Thanks skrimpy.
Um, I might release it to the public then, however, at the moment it’s a slopped together type job though sigh. I basically copied/pasted the blog’s style.css informations right into the bbPress stylesheet.. and so forth.
When I get some more time here, hopefully soon, I’ll make a public release of the theme.
As I’m sure others running the WordPress Gathering theme, might want to have it..

Thanks for the nice comments..

spencerp
I’ve cranked out a trac ticket for this, though it’s not clear if the Akismet code is part of the core or not.
this is a great looking theme, you’ve integrated it nicely with the blog
Are you going to make it a public theme? It’s quite sexy ;p
If you look at the top of the default theme’s header (/bb-templates/header.php) you will see:
<link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />
<?php global $bb_locale; if ( ('rtl' == $bb_locale->text_direction) ) : ?>
<link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />
<?php endif; ?>
Currently, you have a file called he.mo (is that the right name for Hebrew?) in bbPress’ languages directory.
You should also put a file called he.php in that directory that has the following content.
<?php
$text_direction = 'rtl';
?>
Then, bbPress will know that your language is RTL and should include both the style.css and the style-rtl.css automatically.
But, you’re right. There are a bunch of CSS bugs it looks like. I’ll see what I can do to fix them.
Hi mdawaffe – Thanks for the fast reply.
If I understand you correctly – what you offer is to paste all the content of style-rtl.css, into the file style.css (in the end of it).
Well, I just tried it, and seems that the style.css has some “design conflicts” in it (look at the forum header for example)…
you can see the results at:
http://www.biostatistics.co.il/forums/
Hope you (or someone else) could help
,
Tal.
Yes – that’s a great idea
There’s a plugin for images: https://bbpress.org/plugins/topic/5?replies=14
The <blockquote> tag is allowed by default.
I’m still in the process of doing things with it, so, if you find things quirky, please be patient…
Anyway, I tried to get the blog’s theme around the forums themselves. I used the blog’s imagery, blog’s style.css codes right in the original bbPress stylesheet.. and so forth. I also used the WordPress.org/support/ user profile layout basically..
Well, what you think?
http://spencerp.net/forums/
Be gentle!!
spencerp
Nevermind, I took out the path to the wp-blog-header.php file now, and adjusted my theme accordingly.
If someone wants to try and figure it out though, feel free.. Might be useful later on sometime..

spencerp
I’ve already posted this to the list, and I’ve also checked that disabling the one in the blog, stops this from happening.
However though, the plugin won’t work and do what’s it supposed too! Anyway.. on with the B.S…
Fatal error: Cannot redeclare bb_int_set_current_user() (previously declared in /home/mypath/myuser/public_html/wp-content/plugins/bbpress-integration.2.php:14) in /home/mypath/myuser/public_html/forums/my-plugins/bbpress-integration.2.php on line 13
I got this error after uploading, and activating the newest bbpress-integration.2.php plugin.
I uploaded the two too:
my-plugins/ directory
wp-content/plugins/ directory
Please note though: I’m using the full path to my wp-blog-header.php file, in the forum’s config.php file.
I also have the following for near footer of the config.php if it make’s a difference:
$bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;
$bb->wp_home = ‘false’; // WordPress – Options->General: Blog address (URL) // No trailing slash. Example: ‘http://example.com’
$bb->wp_siteurl = ‘false’; // WordPress – Options->General: WordPress address (URL) // No trailing slash. Example: ‘http://example.com’
// Use the following line *only* if you will be loading WordPress everytime you load bbPress.
define(‘WP_BB’, true);
I’m doing this, to be able to use some of my blog’s wp functions, for wrapping the blog’s theme around my forums..
Is there a way to work around this, or..? Thanks in advanced! 
spencerp
Works great, i got most of it translated to danish
Yes please add me for the it_IT translationon SVN so i will put there my translation files.
About the POT i checked a diff with the one i generated nd they looks the same then it’s all ok
Yup!
In fact, if anyone wants one now, I can set it up for you.
Also… that’s the first pot file I’ve ever made. Can you please let me know of any issues
Sadly, by the time you get to the registration template, the user has already been added.
You could write a plugin that, during the bb_init hook, checks to see if $_SERVER matches the registration link and, if so, send a header(“Location: http://blah.blah/my-reg.php”).
I really want to know wy this works in PHP5 but not PHP4.
This needs to get fixed at the source.
startribe (or anyone who has seen this problem): Can you de me a favor? Unfix the problem, then add $bb->debug = 1; on the first line of bbPress’ config.php file.
Go to the tags page, and you should see some ugly text at the top of the screen. Can you paste that text here?
Thanks!
BTW, that displays something like this:
01/05/07 at 10:21:21
Here’s how I do it in my private messages plugin
strftime("%m/%d/%y at %r",strtotime($timevar)+($bb->gmt_offset * 60 * 60))
Where $timevar is the time that I passed to the function.
Did you find the source of the problem? Even better, did you find a solution?
I’ve been scouring the whole code for bbPress and still couldn’t figure out how to set up the format just how I want it for Date and Time (for the post).
Can anyone tell me where to go for such edits?
Much thanks.