OK, here's my new fix. This gets a little more tricky, since now the comment code is in a separate PHP class.
Place this in your functions.php file:
add_action( 'wp_head', 'fix_fb_comment_placement' );
function fix_fb_comment_placement() {
$priority = apply_filters( 'facebook_content_filter_priority', 30 );
remove_filter( 'the_content', array( 'Facebook_Comments', 'the_content_comments_box' ), $priority );
}
Place this inside your comments.php file (or wherever you want the FB comments box to go...)
<?php //Added for Official FB plugin
$fb_comments = new Facebook_Comments();
echo $fb_comments->the_content_comments_box();
?>
I decided to turn comments on/off based on whether regular WP comments were on for a particular post:
<?php if ( comments_open() ) {
//Added for Official FB plugin
$fb_comments = new Facebook_Comments();
echo $fb_comments->the_content_comments_box();
} ?>