We needed to add another filter, so the code looks like this:
add_filter( 'get_user_display_name', 'rk_display_name' );
add_filter( 'get_post_author', 'rk_display_name' );
function rk_display_name($name, $ID = 0) {
if ( !seems_utf8( $name ) ) {
return utf8_encode( $name );
}
return $name;
}
I have the same problem with the /bb-admin/ as described in the second post. Any solutions?
I have the same problem with the /bb-admin/ as described in the second post. Any solutions?