I used this
function fbc_button2() {
$user = OSCFacebook::newInstance()->getUser();
if( $user && osc_is_web_user_logged_in() ) {
echo '<img src="
https://graph.facebook.com/' . $user . '/picture" style="float:right;">';
//echo '<a href="' . OSCFacebook::newInstance()->logoutUrl() . '">' . __( 'Logout', 'facebook' ) . '</a>';
}
}
Being that the first button for facebook is to log in or out, I used another function call to show their image. So in facebook plugin index, put the above and where you want their image put <?php fbc_button2(); ?>