diff -Naur nodeformsettings_orig/includes/option_nfs_body_description.inc nodeformsettings/includes/option_nfs_body_description.inc
--- nodeformsettings_orig/includes/option_nfs_body_description.inc	1970-01-01 01:00:00.000000000 +0100
+++ nodeformsettings/includes/option_nfs_body_description.inc	2011-07-07 14:55:23.000000000 +0200
@@ -0,0 +1,17 @@
+<?php
+
+/**
+ * Set the node body description (help text)
+ */
+function _option_nfs_body_description(&$form, &$form_state, $settings, $node) {
+
+  // Only proceed if the body_field element exists.
+  if (!isset($form['body_field'])) {
+    return $form;
+  }
+
+  // Set help text for body_field.
+  $form['body_field']['body']['#description'] = empty($form['body_field']['body']['#description'])? t($settings['nfs_body_description']) : $form['body_field']['body']['#description'] . ' ' . $settings['nfs_body_description'];
+
+  return $form;
+}
\ No newline at end of file
diff -Naur nodeformsettings_orig/includes/option_nfs_title_description.inc nodeformsettings/includes/option_nfs_title_description.inc
--- nodeformsettings_orig/includes/option_nfs_title_description.inc	1970-01-01 01:00:00.000000000 +0100
+++ nodeformsettings/includes/option_nfs_title_description.inc	2011-07-07 14:55:32.000000000 +0200
@@ -0,0 +1,17 @@
+<?php
+
+/**
+ * Set the node title description (help text).
+ */
+function _option_nfs_title_description(&$form, &$form_state, $settings, $node) {
+
+  // Only proceed if the title element exists.
+  if (!isset($form['title'])) {
+    return $form;
+  }
+
+  // Set help text for title field.
+  $form['title']['#description'] = empty($form['title']['#description'])? t($settings['nfs_title_description']) : $form['title']['#description'] . ' ' . t($settings['nfs_title_description']);
+
+  return $form;
+}
\ No newline at end of file
diff -Naur nodeformsettings_orig/includes/settings_node.inc nodeformsettings/includes/settings_node.inc
--- nodeformsettings_orig/includes/settings_node.inc	2011-07-07 14:56:24.000000000 +0200
+++ nodeformsettings/includes/settings_node.inc	2011-07-07 00:35:18.000000000 +0200
@@ -184,6 +184,20 @@
 		'#default_value' => isset($settings['nfs_title_edit']) ? $settings['nfs_title_edit'] : $defaults['nfs_title_edit'],
 		'#description' => t('Available variables: !node_title, !node_type.'),
 	);
+	
+	// Set the Help text for title field
+	$form['nodeformsettings']['nfs_title_description'] = array(
+		'#title' => t('Help text for title field'),
+		'#type' => 'textarea',
+		'#default_value' => isset($settings['nfs_title_description']) ? $settings['nfs_title_description'] : $defaults['nfs_title_description'],
+	);
+	
+	// Set the Help text for body field
+	$form['nodeformsettings']['nfs_body_description'] = array(
+		'#title' => t('Help text for body field'),
+		'#type' => 'textarea',
+		'#default_value' => isset($settings['nfs_body_description']) ? $settings['nfs_body_description'] : $defaults['nfs_body_description'],
+	);
 		
 	return $form;
 }
\ No newline at end of file
diff -Naur nodeformsettings_orig/nodeformsettings.module nodeformsettings/nodeformsettings.module
--- nodeformsettings_orig/nodeformsettings.module	2011-07-07 14:56:24.000000000 +0200
+++ nodeformsettings/nodeformsettings.module	2011-07-07 13:57:06.000000000 +0200
@@ -41,6 +41,8 @@
 		'nfs_taxonomy' => 0,
 		'nfs_title_create' => t('Create !node_type'),
 		'nfs_title_edit' => t('!node_title'),
+		'nfs_title_description' => '',
+		'nfs_body_description' => '',
 	);
 }
 
