﻿diff --git a/mappers/field.inc b/mappers/field.inc
index 43d62c4..0044df2 100644
--- a/mappers/field.inc
+++ b/mappers/field.inc
@@ -25,9 +25,6 @@ function field_feeds_processor_targets_alter(&$targets, $entity_type, $bundle_na
   );
   $string_types = array(
     'list_text',
-    'text',
-    'text_long',
-    'text_with_summary',
   );
   foreach (field_info_instances($entity_type, $bundle_name) as $name => $instance) {
     $info = field_info_field($name);
diff --git a/mappers/text.inc b/mappers/text.inc
new file mode 100644
index 0000000..b1cd043
--- /dev/null
+++ b/mappers/text.inc
@@ -0,0 +1,116 @@
+<?php
+
+/**
+ * @file
+ * On behalf implementation of Feeds mapping API for text.module.
+ */
+
+
+/**
+ * Implements hook_feeds_processor_targets_alter().
+ *
+ * @see FeedsNodeProcessor::getMappingTargets().
+ */
+function text_feeds_processor_targets_alter(&$targets, $entity_type, $bundle_name) {
+  foreach (field_info_instances($entity_type, $bundle_name) as $name => $instance) {
+    $info = field_info_field($name);
+
+    switch ($info['type']) {
+
+      case 'text_with_summary':
+
+        $targets[$name . ':text'] = array(
+          'name' => t('@name Text', array('@name' => $instance['label'])),
+          'callback' => 'text_with_summary_feeds_set_target',
+          'description' => t('The @label field of the node.', array('@label' => $instance['label'])),
+        );
+        $targets[$name . ':summary'] = array(
+          'name' => t('@name Summary', array('@name' => $instance['label'])),
+          'callback' => 'text_with_summary_feeds_set_target',
+          'description' => t('The @label summary field of the node.', array('@label' => $instance['label'])),
+        );
+
+        $targets[$name . ':summary_truncated'] = array(
+          'name' => t('@name Summary Truncated', array('@name' => $instance['label'])),
+          'callback' => 'text_with_summary_feeds_set_target',
+          'description' => t('The @label field of the node truncated with the text_summary() function.', array('@label' => $instance['label'])),
+        );
+
+      break;
+
+
+      case 'text':
+      case 'text_long':
+
+        $targets[$name . ':summary'] = array(
+          'name' => check_plain($instance['label']),
+          'callback' => 'field_feeds_set_target_text',
+          'description' => t('The @label field of the node.', array('@label' => $instance['label'])),
+        );
+
+      break;
+    }
+
+
+  }
+}
+
+/**
+ * Callback for mapping. Here is where the actual mapping happens.
+ *
+ * When the callback is invoked, $target contains the name of the field the
+ * user has decided to map to and $value contains the value of the feed item
+ * element the user has picked as a source.
+ */
+function text_with_summary_feeds_set_target($source, $entity, $target, $value) {
+  if (empty($value)) {
+    return;
+  }
+
+  if (isset($source->importer->processor->config['input_format'])) {
+    $format = $source->importer->processor->config['input_format'];
+  }
+
+  // Handle non-multiple value fields.
+  if (!is_array($value)) {
+    $value = array($value);
+  }
+
+  // Iterate over all values.
+  $i = 0;
+
+  list($field_name, $sub_field) = explode(':', $target);
+  $info = field_info_field($field_name);
+
+  foreach ($value as $v) {
+    if (!is_array($v) && !is_object($v)) {
+      if (isset($entity->{$field_name}['und'][$i]['value'])) {
+          $field['und'][$i]['value'] = $entity->{$field_name}['und'][$i]['value'];
+      }
+      if (isset($entity->{$field_name}['und'][$i]['summary'])) {
+          $field['und'][$i]['summary'] = $entity->{$field_name}['und'][$i]['summary'];
+      }
+
+      if ($sub_field == 'text') {
+        $field['und'][$i]['value'] = $v;
+      }
+      elseif ($sub_field == 'summary') {
+        $field['und'][$i]['summary'] = $v;
+      }
+      elseif ($sub_field == 'summary_truncated') {
+        $field['und'][$i]['summary'] = text_summary($v); // ($text, $format = NULL, $size = NULL)
+      }
+
+      if (isset($format)) {
+        $field['und'][$i]['format'] = $format;
+      }
+
+    }
+    if ($info['cardinality'] == 1) {
+      break;
+    }
+    $i++;
+  }
+
+  $entity->{$field_name} = $field;
+}
