Search Results for 'bbpress'
-
Search Results
-
Hi all,
I am trying to integrate BBPress with a few WordPress installs that all share the same user table database.
All is working fine except for adding:
define('COOKIEHASH', md5('my key here'));in the bb-config.php file, no matter what I add here, the cookiehash is never changed using BBPress 1.0.2, is this a bug have I missed something?
Topic: Hiding Sub-Forums
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:
http://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!
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
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];
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.
that I might have made a mistake. To hear that I should be downgrading to an older version is pretty frightening too, because this is for a client, and I wasn’t planning on sticking around for years to fix all the potential things that might happen from using a year old version of something (especially when support for the .9 version gets dropped altogether.
