Forums
-
- Forum
- Posts
-
- Installation
- 28,399
- Troubleshooting
- 62,313
- Themes
- 10,391
- Plugins
- 15,314
- Requests & Feedback
- 14,932
- Showcase
- 3,255
-
Fixed.
Changed
<?php if ( $avatar = bb_get_avatar( bb_get_current_user_info( 'name' ), $size = '50' ) ) : ?>
<div style="float:right;"><?php echo $avatar; ?></div>
<?php unset($avatar); endif; ?>
to
<?php if ( $avatar = bb_get_avatar( bb_get_current_user_info( 'id' ), $size = '50' ) ) : ?>
<div style="float:right;"><?php echo $avatar; ?></div>
<?php unset($avatar); endif; ?>