diff --git a/exclude_node_title.module b/exclude_node_title.module
index e8c223c..05cf1d7 100755
--- a/exclude_node_title.module
+++ b/exclude_node_title.module
@@ -269,3 +269,45 @@ function _exclude_node_title($param, $view_mode = 'full') {
       break;
   }
 }
+
+/**
+ * Implements hook_inline_entity_form_entity_form_alter().
+ */
+function exclude_node_title_inline_entity_form_entity_form_alter(&$entity_form, &$form_state) {
+  if ($entity_form['#entity_type'] == 'node') {
+    // exclude for title
+    if (user_access('use exclude node title')) {
+      if (_exclude_node_title($entity_form['#entity'], 'nodeform')) {
+        drupal_set_title('');
+      }
+    }
+    // --------------
+    // make sure user have permissions correct
+    if (!exclude_node_title_check_perm($entity_form['#entity'])) {
+      return FALSE;
+    }
+    // don't bother to add form element if the content type isn't configured
+    // to be excluded by user...
+    if (variable_get('exclude_node_title_content_type_value_' . $entity_form['#entity']->type) == 'user') {
+      $weight = $entity_form['title']['#weight'] + 0.1;
+      $entity_form['exclude_node_title'] = array(
+        '#type' => 'checkbox',
+        '#title' => t('Exclude title from display'),
+        '#required' => FALSE,
+        '#default_value' => ($entity_form['#op'] == 'edit' ? in_array($entity_form['#entity']->nid, variable_get('exclude_node_title_nid_list', array())) : FALSE ),
+        '#weight' => $weight,
+      );
+      if (module_exists('translation') && variable_get('exclude_node_title_translation_sync', TRUE) == TRUE && translation_supported_type($entity_form['#entity']->type) && $entity_form['#op'] == 'edit') {
+        // get tnid
+        $tnid = db_select('node', 'n')
+          ->fields('n', array('tnid'))
+          ->condition('nid', $entity_form['#entity']->nid)
+          ->execute()
+          ->fetchAssoc();
+        if ($tnid['tnid'] != $entity_form['#entity']->nid) {
+          $entity_form['exclude_node_title']['#description'] = t('Check !here if you don`t have title disabled in the source language of this node.', array('!here' => l(t('here'), 'node/' . $tnid['tnid'] . '/edit')));
+        }
+      }
+    }
+  }
+}
