[Plugin: WP-FacebookConnect] Name & avatar of logged user not diplaying – solution
-
I had a problem with my name and av when I was logged in throught FC – the were not displaying (just “Welcome, Logout of Facebook” and default av displayed).
It is caused by very high IDs introduced by FB (my is 100000326900458) which were truncated to much lower decimal number by sprintf command.
My solution: in fbconnect.php line 470 starts the function fbc_render_login_state()
in function body, after sprintf(‘ change:
uid=”%d”
to:
uid=”%s”
it appears twice.That’s all. Remember to backup this file first.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Plugin: WP-FacebookConnect] Name & avatar of logged user not diplaying – solution’ is closed to new replies.