Forums
-
- Forum
- Posts
-
- Installation
- 28,536
- Troubleshooting
- 62,800
- Themes
- 10,444
- Plugins
- 15,388
- Requests & Feedback
- 14,986
- 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.