I encountered a weird bug today while implementing profile image for Facebook users in MovableType. Username was not being pushlished properly or it was just getting eaten up by the Facebook profile image.
Quick and dirty solution to this problem: duplicate the div that contains commenter name!
<mt:If tag="CommenterAuthType" eq="Facebook">
<div class="user-pic clearfix comment-fb-<$mt:CommenterUsername$>">
<a href="http://www.facebook.com/profile.php?id=<$mt:CommenterUsername$>" class="auth-icon"><img
src="<$mt:CommenterAuthIconURL size="logo_small"$>" alt="<$mt:CommenterAuthType$>"/></a>
<fb:profile-pic uid="<$mt:CommenterUsername$>" size="square" linked="true"><img
src="http://static.ak.connect.facebook.com/pics/q_default.gif" /></fb:profile-pic>
</div>
<div class="commenter-name"><$mt:CommentAuthorLink$></div>
<div class="commenter-name"><$mt:CommentAuthorLink$></div>
Checkout the Facebook Connect Commenters Plugin Readme file on Github for more information.


Recent Comments