Forums
-
- Forum
- Posts
-
- Installation
- 28,380
- Troubleshooting
- 62,287
- Themes
- 10,391
- Plugins
- 15,313
- Requests & Feedback
- 14,932
- Showcase
- 3,252
-
I have the same problem, I solved it by filtering the display names:
add_filter( 'get_user_display_name', 'rk_display_name' );
function rk_display_name($name, $ID = 0) {
if ( !seems_utf8( $name ) )
return utf8_encode( $name );
return $name;
}
Put this inside a plugin.