Forums
-
- Forum
- Posts
-
- Installation
- 28,532
- Troubleshooting
- 62,748
- Themes
- 10,443
- Plugins
- 15,383
- Requests & Feedback
- 14,983
- 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.