Published on August 26th, 2009 by Tomcraft1980
Hi threre, I have an early installation from 0.7 or something like that… there are about 200 bb_topic fields which miss a “topic_poster” / “topic_poster_name” / “topic_last_poster” / “topic_last_poster_name” and “topic_last_post_id”.
Is there any way to fill the fields later as the IDs and Names are also in bb_posts_ and wp_users (integrated installation).
Kind regards
Tom
Published on August 26th, 2009 by Jimmy B.
Greetings,
After searching and reading around a bit, I still cannot resolve this “issue”. Basically I’d like to hide the sub-forums from my homepage So that only the category or parent forum shows up.
I came across this post:
https://bbpress.org/forums/topic/hide-subforums-on-main-page
which seemed to offer a quick fix of replacing one line of code:
<?php if ( bb_forums() ) : ?>
to
<?php if ( bb_forums("depth=1") ) : ?>
Unfortunately this does not seem to work.
If any further information is needed, please let me know! Thanks very much!
Published on August 26th, 2009 by EmileGoss
Hey everyone,
I’ve been looking for a plugin that would allow users to enter information in custom profile fields. So far, I haven’t come across anything, except for one for anonymous users. Is there such a thing for normal users?
Thanks,
Emile
Published on August 26th, 2009 by
bbpress adsense injection working great on bbpress 1.0.2,
but the problem is:
it’s showing word : “array” and google adsense, when we logged in
i.e.
array
google ads
Please visit the http://www.flickr.com/photos/12178563@N05/3859570408/
for screen shot
thanks,
Phani
Published on August 26th, 2009 by Texiwill
Hello,
There is a bug in bb-includes/functions.bb-forums.php, at line 101 in bbpress v1.0.2. The code assumes that the forum_id is the sames the array_id when the array is flattened. This is not always the case if you apply_filters to the forum list such as private forums does.
The code ccurrently reads:
_forums[$_id] = $forums[$_id]
Which may not be true if the forum id is not the same as the array id.
This code does fixed the problem…. The key is to convert forum_id into an array enumerator so that when you look at $_ids you compare to the proper array which is no longer the full array but one with missing topics/forums.
$forums = (array) apply_filters( ‘get_forums’, $forums );
+ foreach($forums as $f) {
+ $fids[$f->forum_id] = $f;
+ }
if ( $child_of || $hierarchical || $depth ) {
$_forums = bb_get_forums_hierarchical( $child_of, $depth, $forums );
if ( !is_array( $_forums ) )
return false;
$_forums = (array) bb_flatten_array( $_forums, $cut_branch );
foreach ( array_keys($_forums) as $_id )
+ $_forums[$_id] = $fids[$_id];
Published on August 26th, 2009 by Navin
Guys,
I know bp has this feature, but I really think this a really hot feature to give users the option the update their status.
It’s one of the features I really love about Facebook, and would really loved it I could implement this feature in my own bbpress forum.
I would loved it if users could update their status from the index, and if I login I can see other users their status update. And reply on it, and also leave my own status update.
Buyddypress has this feature, I looove it. I found a plugin where I think this works on WordPress.
See http://www.instinct.co.nz/wordpress-status-updates-plugin/
I’m really considering to integrate wp afterall, ‘cause most plugins are wp based.
But if anyone could program this feature to work on bbpress, I’d be very happy and probably a lot of other people too.
Published on August 26th, 2009 by
I have the latest releases of each I beleive:
bbpress 1.0.2
buddypress 1.0.3
and I followed these instructions as close as possible I believe.
http://umwblogs.org/wiki/index.php/Integrating_WPMu,_BuddyPress,_and_bbPress
It did not work, I have actually tried differenct variations 4 times now. When I was at the last part I got locked out of bbpress and could not log back in. That is where I am now in this issue. please assist.
Published on August 26th, 2009 by curtisdroppelman
It would be so tight if you guys made a bbPress MU!
Thanks so much for this tho.
Curtis
twitter.com/curtis
Published on August 26th, 2009 by circulartrend
Hi there,
So I saw the forum-is-category plugin but it doesnt work on bbpress version 0.9.0.6. It still makes a link for a category. Also that is not exactly what I want. I want to mock like proboards or phpbb as far as separation. Now I would upgrade to 1.0 of bbpress to utilize the separate category sections, however dozens of plugins have yet to be updated. I am talking about more than one main theme type of thing:
Section 1
Forum 1
Forum 2
Section 2
Forum 1
Forum 2
See what I am getting at? I hope the future of bbpress implements all the plugin ideas with abilities to change them, turn them on and off etc without the use of plugins…just have it all built in.
Published on August 26th, 2009 by jeffhiggins
Is it possible to allow for / in usernames?
I recently converted my phpbb board to bbPress, but one of my members had a username that looked like ///Abcd.
So as opposed to forcing him to change his username, is it possible to dig into the code and allow /’s for usernames?
Any help would be greatly appreciated!
Edit: Sorry if this thread is in the wrong forum!