In the sociable.php file search the code:
1115 function sociable_insert_post($pID) {
1116 if (isset($_POST['sociableoff'])) {
1117 if (!get_post_meta($post->ID,'_sociableoff',true))
1118 add_post_meta($pID, '_sociableoff', true, true);
1119 } else {
1120 if (get_post_meta($post->ID,'_sociableoff',true))
1121 delete_post_meta($pID, '_sociableoff');
1122 }
1123 }
Delete the line 1120.
That’s all.