diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 24ec296..d2341a9 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,5 +1,6 @@
 Field API Tab Editor 7.x-1.x-dev, xxxx-xx-xx
 --------------------------------------------
+#2243951 by DamienMcKenna: Exclude field groups from the new form.
 By DamienMcKenna: Mentioned References Manager in the README.txt.
 
 
diff --git a/README.txt b/README.txt
index c0a032e..19d43ef 100644
--- a/README.txt
+++ b/README.txt
@@ -15,6 +15,8 @@ The primary features include:
 
 * Currently limited to node fields.
 
+* Field groups will be excluded, to make for a simpler interface.
+
 
 Credits / Contact
 ------------------------------------------------------------------------------
diff --git a/fate.pages.inc b/fate.pages.inc
index 54042b5..89f9a2d 100644
--- a/fate.pages.inc
+++ b/fate.pages.inc
@@ -154,8 +154,16 @@ function fate_field_edit_field_form(&$form, &$form_state) {
   $form['#bundle'] = $bundle;
 
   // Let other modules make changes to the form.
+
+  // Exclude some modules.
+  $excluded_modules = array(
+    'field_group',
+  );
   // Avoid module_invoke_all() to let parameters be taken by reference.
   foreach (module_implements('field_attach_form') as $module) {
+    if (in_array($module, $excluded_modules)) {
+      continue;
+    }
     $function = $module . '_field_attach_form';
     $function($entity_type, $entity, $form, $form_state, $langcode);
   }
