Forum Replies Created
-
In reply to: Language files doesn’t work
Take out the language switcher and try again.
In reply to: 3 New Blank bbPress ThemesMost 0.9 themes will work in 1.0 – they just may not have all the latest bells and whistles.
Hmmm, that’s lame. Looks like it isn’t the latest bbPress though.
In reply to: Cookies Bug with 1.0-RC-3 and 2.8 Integration?I really must release the new version of the bbPress Integration plugin… I’ll do some testing against WPMU now.
In reply to: Convert WP Super Cache plug-in for bbPress ?1.0 RC3 is still slower than 0.9
And will probably remain that way due to the increased demands of the WP_Taxonomy structure.
In reply to: New deep integration method?It’s totally possible. I think you are trying to use bbPress 1.0-RC-2. Try the newer 1.0-RC-3 instead, this problem is fixed there.
In reply to: Control Post Gravatar Link…Then add one. It’ll get included automatically by bbPress.
In reply to: Control Post Gravatar Link…Put this into your themes
functions.php
file and call it at will. It may screw up with pingback posts, not sure though.function my_post_author_avatar_profile_link( $size = '48', $default = '', $post_id = 0 ) {
if ( ! bb_get_option('avatars_show') )
return false;
$author_id = get_post_author_id( $post_id );
if ( $link = get_user_profile_link( $author_id ) ) {
echo '<a href="' . esc_attr( $link ) . '">' . bb_get_avatar( $author_id, $size, $default ) . '</a>';
} else {
echo bb_get_avatar( $author_id, $size, $default );
}
}In reply to: Just one more… release candidate 1.0-RC-3Go check the ticket, you are right that there is a problem, but I think it is limited in scope.
In reply to: Just one more… release candidate 1.0-RC-3I agree that is not optimal at all. Akismet needs a serious looking at, but that might be delayed until a later minor version release now.
In reply to: Just one more… release candidate 1.0-RC-3There has been caching via the WP_Object_Cache methods for a while in 1.0 – what I did was a review of bbPress’ most commonly used areas to optimise its usage.
There were a few places where perfectly good cached objects were being ignored and the required data was being retrieved from the database instead.
There were also a couple of places where multiple MySQL queries were being used when one query was possible. For example when fetching multiple user objects via BP_Users->get_user() we were looping through an array of requested user_ids and doing a query on the database for each user. Now this is all bundled into one query (with the meta for these users still all fetched in a single separate query).
I knew this was a problem before, but I hadn’t realised quite how deep the rabbit hole was until I started crawling into it.
In reply to: Just one more… release candidate 1.0-RC-3Although things look a little different now. The premise of integration and the instructions remain the same with one small variation. If you are integrating with WordPress < 2.8 then you need to make an additional setting in bbPress to get cookies to be compatible.
In reply to: Just one more… release candidate 1.0-RC-3I think the localisation problem is fixed, I’d appreciate if you could test it out.
In reply to: Just one more… release candidate 1.0-RC-3@ _ck_
You are right, additionally the timezone stuff degrades gracefully for PHP4 users.
In reply to: Final release candidate 1.0-RC-2 is available.Closing this, please continue discussion here.
In reply to: is there a maximum amount of tags per topic?Not that I know of. Probably best to make your design flexible enough to handle it : )
Google is smart enough to pick a legitimate usage of tags type pages from an illegitimate one.
In reply to: Testing Embeded VideobbPress 1.0 incorporates the shortcode API from WordPress, so most shortcode based video insertion plugins for WordPress will work with only minor modification.
In reply to: Can you only use the LOOP once per page.Because the loop relies on the
$topics
global being set by the base index.php file.$topics = get_latest_topics(false, $page);
You can add this to your template if you like just above that loop, to make sure $topics is always available…
if ( !isset( $topics ) ) {
$topics = get_latest_topics( false, 1 ); // Only fetch the first page
}You might want to upgrade that further to the latest trunk, RC2 has some issues.
In reply to: Convert WP Super Cache plug-in for bbPress ?and several more queries per page when generating the same content
I’m working on fixing that now where possible.
In reply to: Final release candidate 1.0-RC-2 is available.You could also grab the latest nightly build…
In reply to: bbPress Integration plugin for WPMUJust a note in passing… re-applying the role map doesn’t change the roles of any users that already have a role.
Nice, if you need help fixing your integration just let me know.
In reply to: Trouble Posting Anchor Tags with RC2This is a bug in the RC 2 release. Grab the latest nightly build instead.
In reply to: Final release candidate 1.0-RC-2 is available.So you have 1.0-RC-2 except for that one file? Can you please try replacing the entire install with the latest trunk? If you don’t use SVN I can create a package for you.