@ch8rt, I’m just learning this plugin, but I would suggest you look at loop-bbp_topics.php (in the plugin folder structure it’s in plugin/bbp-themes/bbp-twentyten/ ). Around line 16 is where the table gets created. It’ll need a little custom mojo to get it working totally right, but let us know how it goes!
Hey JJJ/everyone!
Just got the plugin working on our server and for the most part, everything works. Exciting!
However, something that puzzled me was the “profiles”. My guess is that this version they are going to be separate pages from BuddyPress profile pages (yes, we’re also using BP) and later be merged when BP provides new profile functionality?
In the mean time, it looks like we’ll have to overload the bbp_author_link function… that, or hack out every instance of it, which I would prefer not to do.
If anyone could comment or guide me in the right direction, I’d be very grateful. Thanks for the great work everyone!
-mrA
As of today my 2 month old bbPress installation is now showing posts in the wrong order. The most recently added or edited post shows at the top of the thread, while all the other posts are in the correct chronological order beneath.
Hi. I have uploaded via ftp into plugins folder but it doesn’t show up. Your instructions indicate to go to the url of the installation. Is bbpress for a sole wordpress site usage not just a plugin for forum within a site?
I have a password protected directory on a sub domain. wordpress is the only thing installed on it. I want the forums to fall under the same password protection so that my members don’t need to use 2 logins to use what *should* be a functional part of the site their used to. so I tried uploading it into a directory called bbpress on that sub domain with wordpress installed.
I guess my post was a little confusing, but trust me, so is my server set up
I have a password protected directory on a sub domain. wordpress is the only thing installed on it. I want the forums to fall under the same password protection so that my members don’t need to use 2 logins to use what *should* be a functional part of the site their used to. so I tried uploading it into a directory called bbpress on that sub domain with wordpress installed.
I guess my post was a little confusing, but trust me, so is my server set up
Any ideas on pulling users favourite/created/subscribed topics somewhere other than the users page?
This is the code for created from the users page which shows 0 results elsewhere, presumably because it doesn’t know what user I want.
<?php bbp_set_query_name( 'bbp_user_profile_topics_created' ); ?>
<?php if ( bbp_get_user_topics_started() ) :
get_template_part( 'loop', 'bbp_topics' );
else : ?>
<p><?php bbp_is_user_home() ? _e( 'You have not created any topics.', 'bbpress' ) : _e( 'This user has not created any topics.', 'bbpress' ); ?></p>
<?php endif; ?>
<?php bbp_reset_query_name(); ?>
I’ve had success going the custom post types route with…
<?php query_posts( 'post_type=bbp_topic&posts_per_page=5&author_name=' . $username ); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
" title="<?php the_title(); ?>"><?php the_title(); ?>
<?php endif; ?>
Which works, if all I want is the title, but not the correct way I’m guessing
I just joined the forums to be able to ask about my failed install, but I think I see your problem having just gone through the install myself (albeit unsuccessfully).
You say you uploaded the files to your wordpress directory.
You’re not supposed to.
If your site is example.com and you want bbpress to live at example.com/forums/ then use your ftp program to create a directory called forums in your root directory (ie at the *same level* or alongside your wordpress directory, not *in* it), and copy all of the bbpress files into that directory.
Then in your browser visit example.com/forums/ and an installation wizard should start up (not that it does for me).
I just joined the forums to be able to ask about my failed install, but I think I see your problem having just gone through the install myself (albeit unsuccessfully).
You say you uploaded the files to your wordpress directory.
You’re not supposed to.
If your site is example.com and you want bbpress to live at example.com/forums/ then use your ftp program to create a directory called forums in your root directory (ie at the *same level* or alongside your wordpress directory, not *in* it), and copy all of the bbpress files into that directory.
Then in your browser visit example.com/forums/ and an installation wizard should start up (not that it does for me).
https://bbpress.org/plugins/topic/nospamuser/ 
bbPress doesn’t store IP addresses of users when they register. The Project Honey Pot plugin will block the spammers from every page on your forum, including the login page, so there’s no reason to worry.
https://bbpress.org/plugins/topic/nospamuser/ 
bbPress doesn’t store IP addresses of users when they register. The Project Honey Pot plugin will block the spammers from every page on your forum, including the login page, so there’s no reason to worry.
I’m pretty sure the old plugin still works. With the upcoming bbPress plugin version, emoticons will be handled by WordPress.
I’m pretty sure the old plugin still works. With the upcoming bbPress plugin version, emoticons will be handled by WordPress.
I am experiencing the same issue. Everything was integrated just fine until I assigned roles in the bbPress backend and added wp_ as the table prefix, now I can’t login.
I am experiencing the same issue. Everything was integrated just fine until I assigned roles in the bbPress backend and added wp_ as the table prefix, now I can’t login.
If you have Akismet and Bozo Users installed, spam users will automatically be marked as bozos when they register. If you’re looking a way to check IPs in Project Honey Pot’s database, try my plugin Project Honey Pot for bbPress. For any silent spam bots registered before you install the plugin, skim through your user list. Spam bot usernames, websites, and email addresses are usually pretty noticeable.
If you have Akismet and Bozo Users installed, spam users will automatically be marked as bozos when they register. If you’re looking a way to check IPs in Project Honey Pot’s database, try my plugin Project Honey Pot for bbPress. For any silent spam bots registered before you install the plugin, skim through your user list. Spam bot usernames, websites, and email addresses are usually pretty noticeable.
Hi,
Apologies, because i know there are lots of posts out there on the subject, but I am kind of new to bbpress, and I’m a little confused.
My client wants emoticons installed on his bbpress installation (1.02), but the only plugins I can find seem to work only up to around bbpress 0.9.
Even the forum topics discussing the need for emoticons and smilies seem to tail off around 2009. Weird.
Did emoticons get integrated into bbpress core around that time? If so, I can’t seem to find any options for it.
Did emoticons become so uncool people stopped using them?
Or is there a way to implement them into bbpress 1.02???
If anyone can point me in the right direction, I’d be really grateful
[insert giant cheesy winking emoticon here]
Jimmmy
Hey all,
I’m trying to intercept certain (pre-defined bbPress) queries and filter a few results out. I figured I’ll need to register an action on ‘bb_query’, but I can’t seem to modify the actual query.
Say I want to filter all topics by myself from the recent posts view, I registered the following:
add_action('bb_query', 'filter_query');
And then the code:
function filter_query(&$obj) {
if($obj->type == 'topic' && $obj->query_id == 'get_recent_posts') {
//ADD "AND topic_author != 'Litso'" to the query here
}
}
Can anyone point me in the right direction?
Hello
I’m trying to fit my Superbold bbpres style to my modified Twenty10 WordPress style. Basically I would like to copy the navigation bar of the Twentyten to the bbpress forum. Any idea on how to do that?
My wordpress http://krusty.dk/
My forum http://krusty.dk/forum/
Any help is greatly appreciated 
Sredna
https://trac.bbpress.org/browser/trunk/bb-load.php#L25 – here’s an even better solution.
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING); allows us to avoid new error messages if PHP adds new error types in the future.
https://trac.bbpress.org/browser/trunk/bb-load.php#L25 – here’s an even better solution.
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING); allows us to avoid new error messages if PHP adds new error types in the future.
Anonymous User 5853594Inactive
With the page templates, you can make a seperate login and registration page.
Just create a new page and look under:
“Page Attibutes” > “Template” > “bbPress – User Register”
With the other templates you can create pages for all kinds of other functions for your blog.
Thanks JJJ!
One more thing’s been bugging me: I want anyone to be able to register on the forum, but no ‘register’ link appears on the bbpress log-in widget, or for example after links that say ‘sorry, need to be signed in to post comments’ .
There seems to be a template file for a bbp registration form, and I’ve tried guessing but I can’t work out the link to it!
So
1. Is this by design, have I got an option wrongly ticked somewhere?
2. Could you let me know the link to a registration form if there is one – otherwise I could use the standard wp registration link
3. Is it worth me searching through the code trying to add in a few links in the right places, is there one quick-win place to this? I guess priority for me is to get the link in the sign-in widget.
I’m tempted to try to create or use a lightbox registration/log-in process anyway, but I need a much shorter term solution (small numbers of people might register from Friday)
Thanks for your help folks, love this software
Mark
It’s a weird problem, because if I use the same function in the same while-loop it does work..
So for the moment I’ve given some invisible html-tag the value `topic_title(forum_last_topic_id());’ and where it’s supposed to be.. (topic name)..
<p>It works, but it’s dirty and I still don’t know what’s wrong.</p>
<p>It’s bbPress 1.02 by the way, should’ve went with 0.9.x! I know.`