diff --git a/inline_entity_form.module b/inline_entity_form.module
index 8ade3f7..f28e6c9 100644
--- a/inline_entity_form.module
+++ b/inline_entity_form.module
@@ -804,6 +804,12 @@ function inline_entity_form_entity_form($controller, $entity_form, &$form_state)
     $entity_form['actions']['ief_edit_cancel']['#ief_row_delta'] = $entity_form['#ief_row_delta'];
   }
 
+  // Help message for ief saving data.
+  $help_markup = '<div class="messages warning">' . t('All changes are stored temporarily. You also need to click Save button at the bottom of the page to make your changes permanent.') . '</div>';
+  $entity_form['actions']['help'] = array(
+    '#markup' => $help_markup, 
+  );
+
   // Add the validation callback that calls the controller's
   // entityFormValidate() and entityFormSubmit() methods.
   // Implemented as #element_validate so that entity forms are submitted
