Search Results for 'bbpress'
-
Search Results
-
I’ve just translated bbPress 1.0.2 to Spanish_Spain (es_ES). It’s available in this direct link, where you can find (in the zip file) the .mo and the .po files.
Acabo de traducir bbPress 1.0.2 al Español de España (es_ES). Está disponible en este enlace directo, donde encontrarás (en el fichero zip) los ficheros .mo y .po.
Topic: Hidden posts
Hi,
I am not a bbPress forum owner. I am a member user. For a while I was able to post to that forum. I had uploaded my avatar and all was fine. Then about a month ago I noticed that my posts weren’t showing. I could see them when I was logged in. But when I wasn’t logged in, my posts were not displayed. I could tell that no one else was seeing them since a post asking folks to respond did not see any action.
I’ve tested this on multiple computers, on multiple networks and on multiple browsers. I’ve also tested by creating a new account. Same problem every time.
I have also noticed that when I am logged in and try to change my Avatar, I get the bbPress notice saying that I “don’t have permission to upload an avatar for this user”.
I have emailed the owners of the forum to no avail. So I am now turning to you all for help. Any idea on what I can do to be able to post again?
Thanks!
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];
. I have these versions: WPMU 2.8.4a, Buddypress 1.0.3, bbpress 1.0.2. Any more ideas please?
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.