diff --git a/sites/all/modules/comment_notify/comment_notify.module b/sites/all/modules/comment_notify/comment_notify.module
index f207933..1c73825 100644
--- a/sites/all/modules/comment_notify/comment_notify.module
+++ b/sites/all/modules/comment_notify/comment_notify.module
@@ -114,7 +114,9 @@ function comment_notify_form_alter(&$form, &$form_state, $form_id) {
     '#title' => t('Notify me when new comments are posted'),
     '#default_value' => $preference,
   );
-
+  if ($preference == 0) {
+    $form['notify']['#type'] = 'hidden';
+  }
   if (count($available_options) > 1) {
     $form['notify_type'] = array(
       '#type' => 'radios',

