glatze (@glatze)

Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • In reply to: Umlaut in member name

    @glatze

    Member

    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;

    }

    @glatze

    Member

    I have the same problem with the /bb-admin/ as described in the second post. Any solutions?

    @glatze

    Member

    I have the same problem with the /bb-admin/ as described in the second post. Any solutions?

Viewing 3 replies - 1 through 3 (of 3 total)