Raphaelx
05-15-2011, 06:13 PM
Hi,
I want to shorten usernames for users registered with FB-Connect.
"Rapahel Example" -> "Raphael E."
how do I realize that?
--------------- Added 1305490636 at 1305490636 ---------------
got it myself, here is how
browse to /includes/
open "class_facebook.php"
go to public function getFbUserInfo($force_reload = false)
find $this->fb_userinfo = $response[0];
add next line $this->fb_userinfo['name'] = shortenFBusername( $this->fb_userinfo['name'] );
find // now return the user info if we got any
return $this->fb_userinfo;
}
add after
function shortenFBusername( $u ) {
return substr( $u, 0, -( strlen( $u ) - strpos( $u, " " ) )+2 ) . '.';
}
I want to shorten usernames for users registered with FB-Connect.
"Rapahel Example" -> "Raphael E."
how do I realize that?
--------------- Added 1305490636 at 1305490636 ---------------
got it myself, here is how
browse to /includes/
open "class_facebook.php"
go to public function getFbUserInfo($force_reload = false)
find $this->fb_userinfo = $response[0];
add next line $this->fb_userinfo['name'] = shortenFBusername( $this->fb_userinfo['name'] );
find // now return the user info if we got any
return $this->fb_userinfo;
}
add after
function shortenFBusername( $u ) {
return substr( $u, 0, -( strlen( $u ) - strpos( $u, " " ) )+2 ) . '.';
}