Forums
-
- Forum
- Posts
-
- Installation
- 28,550
- Troubleshooting
- 62,943
- Themes
- 10,447
- Plugins
- 15,405
- Requests & Feedback
- 15,031
- Showcase
- 3,257
-
It’s because you are destroying $user_id
This is wrong:
$user_id = bb_get_user( $user_id );
$bb_twitter = $user_id->social_twitter;
You should do:
$user = bb_get_user( $user_id );
$bb_twitter = $user->social_twitter;
$user_id holds the id number, not the entire user object.