Yes. If you want to show the Facebook comment box on your posts, go to appearance > editor and select ‘content-single.php’. Add the following code at the bottom:
<!-- Facebook -->
<?php
if(is_single() && get_option('simple_fb_comments_posts') == 'on' && get_option('simple_fb_comments_views') == 'on' || (is_page() && get_option('simple_fb_comments_pages') == 'on' && get_option('simple_fb_comments_views') == 'on') || ((is_home() || is_front_page()) && get_option('simple_fb_comments_homepage') == 'on' && get_option('simple_fb_comments_views') == 'on'))
{
echo '<fb:comments-count href='.get_permalink( $post->ID ).'></fb:comments-count> comments';
}
if ((is_single() && get_option('simple_fb_comments_posts') == 'on') ||
(is_page() && get_option('simple_fb_comments_pages') == 'on') ||
((is_home() || is_front_page()) && get_option('simple_fb_comments_homepage') == 'on'))
{
echo'<div>'.get_option('simple_fb_comments_countmsg'). "</div><div class=\"fb-comments\" data-href=\"".get_permalink()."\" data-num-posts=\"".get_option('simple_fb_comments_num')."\" data-width=\"".get_option('simple_fb_comments_width')."\"></div>";
}
?>
<!-- end Facebook -->
Now go to Plugins > Editor, select “Simple Facebook Comments’ and delete or uncheck the following section:
//COMMENT BOX
function fbcommentbox($content) {
if(is_single() && get_option('simple_fb_comments_posts') == 'on' && get_option('simple_fb_comments_views') == 'on' || (is_page() && get_option('simple_fb_comments_pages') == 'on' && get_option('simple_fb_comments_views') == 'on') || ((is_home() || is_front_page()) && get_option('simple_fb_comments_homepage') == 'on' && get_option('simple_fb_comments_views') == 'on'))
{
$content .= '<fb:comments-count href='.get_permalink( $post->ID ).'></fb:comments-count> comments';
}
if ((is_single() && get_option('simple_fb_comments_posts') == 'on') ||
(is_page() && get_option('simple_fb_comments_pages') == 'on') ||
((is_home() || is_front_page()) && get_option('simple_fb_comments_homepage') == 'on')) {
$content .= '<div>'.get_option('simple_fb_comments_countmsg'). "</div><div class=\"fb-comments\" data-href=\"".get_permalink()."\" data-num-posts=\"".get_option('simple_fb_comments_num')."\" data-width=\"".get_option('simple_fb_comments_width')."\"></div>";
}
return $content;
}
add_filter ('the_content', 'fbcommentbox', 100);
You can look at the result here: https://www.triggr.it/web-fonts/