Forum Replies Created
-
In reply to: Add nofollow to links
bbPress has a function called bb_rel_nofollow() which can be added via filter to functions which output a link (… not functions that output a URL).
For example:
add_filter('post_author_link', 'bb_rel_nofollow');
In reply to: Time FormatIn bbPress 0.8, you just pass the function the date format you want:
https://bbpress.org/blog/2007/02/bbpress-time-functions-no-longer-insane/#63-templates
In reply to: bbPress doesn’t see my custom themeOn a related note, if you cannot use even the default theme and no thumbnails appear in your Presentation admin panel, try looking at this topic:
In reply to: bb-ratings problem with 0.8Try this out – let me know how it goes.
https://bbpress.org/plugins/topic/6
Only the php file (and the readme) in the zip has changed since the last version (0.7.2).
In reply to: bb-ratings problem with 0.8That might break something else.
I’ll upload a new version.
In reply to: The Display Name stopped workingI’m stumped then. You win the prize !
In reply to: The Display Name stopped workingSince the plugin I put up here: https://bbpress.org/forums/topic/694?replies=13#post-4202
doesn’t make any reference to front-page.php, I do not know why you are getting that error.
Are you sure you were runnig the version I put up? Do you have multiple versions of the same plugin running?
In reply to: The Display Name stopped workingHey, that’s me!
Try this:
<?php
/*
Plugin Name: Force Login
Description: No one can see your forums unless they are logged in.
Plugin URI: https://bbpress.org/forums/topic/694
Author: Michael D Adams
Author URI: http://blogwaffe.com/
Version: 0.7
*/
function force_login_init() {
if ( !bb_is_user_logged_in() && false === strpos($_SERVER['REQUEST_URI'], 'bb-login.php') && false === strpos($_SERVER['REQUEST_URI'], 'bb-reset-password.php') ) {
bb_load_template( 'login.php' );
exit;
}
}
add_action( 'bb_init', 'force_login_init' );
?>In reply to: default templates being usedPlease don’t put anything in bb-templates! This will be problematic for you later.
Put your templates in a subdirectory of my-templates/
In reply to: Forums closing at 11am PSTRight here: https://bbpress.org/download/
In reply to: SHWEEEEET!!! 8,888.88888?Yup – today indeed.
In reply to: bbPress forums struck by bbPress bug!Magically fixed by the power of 0.8!
In reply to: Forums closing at 11am PSTIt was a bug!
In reply to: Forums closing at 11am PSTAll set, I think.
In reply to: SHWEEEEET!!! 8,888.88888?Patience my young padawan
Soon!
In reply to: 8.0I’d say Tuesday or Wednesday of this week.
In reply to: 408 Error on this forum when removing a favoriteNot all the servers, just the one that’s in charge of bbPress.org and WordPress.org.
It’s getting hammered after the release of WP 2.1.
We’re getting new servers soon, though, so take heart!
In reply to: Pretty URLs have “replies” argument?The only reason the replies argument is there is for CSS: a quick and dirty way of differentiating between topics you’re up to date on and those you’re not (via a:visited { … }).
We should probably make sure we always 301 redirect to the latest URL.
Oh, and PS: Posts do have their own URL. This one’s is
In reply to: Bozo problemThere’s nothing in the admin for this (sad, I know).
You need to edit that user’s profile.
In reply to: Flooding user accountsbbPress should already be filtering new registrations thorugh Akismet; if you have Akismet set up, it should mark as “bozo” any new registrations.
There may, of course, be bugs particularly if you’re loading both bbPress and WordPress at the same time.
In reply to: Change the default ‘Member’ role title?No need to change core files. Just make a file called user_types.php with the following code in it and put it in your my-plugins/ folder.
<?php
/*
Plugin Name: Change 'Member' Label
Plugin URI: https://bbpress.org/forums/topic/503
*/
function change_user_type_labels( $label, $type ) {
if ( 'member' == $type )
return 'Kazoo Corps Draftee';
return $label;
}
add_filter( 'get_user_type_label', 'change_user_type_labels', 10, 2 );
?>
In reply to: Wrong Charset, cannot specify UTF-8WordPress sends Content-Type headers. I guess bbPress should too.
In reply to: Why Key Masters?You got it: Ghostbusters. No other reason.
In reply to: Loading option into arraybb_update_option( 'forum_restriction_db', array( "1" => "David Bessler,testman", "3" => "David Bessler" ) );
$value = bb_get_option( 'forum_restriction_db' );
That’s how it should work.
In reply to: Changing a Domain nameI cannot think of anything you’d have to do besides re-edit your config.php unless you’ve hardcoded your domain into any custom templates.