It is a mandatory option for the users who doesn’t want to put comments box for specific posts/pages.
If you want to remove that tick box manually please edit this file: fbcs-admin.php
Go to line 708 and delete the below function
function fbcs_metabox()
{
wp_nonce_field(plugin_basename(__FILE__), 'fbcs_noncename');
$_disable_fbcs = get_post_meta(get_the_ID(), $key = '_disable_fbcs', $single = true);
?>
<input id="_disable_fbcs" name="_disable_fbcs" type="checkbox" value="on" <?php checked('on', $_disable_fbcs); ?> />
<label for="_disable_fbcs">Don't use Facebook Comments</label>
<?php
}
–!!– Important –!!–
You have to do the same operation every time plugin is updated
–!!– Important –!!–