diff --git a/og_menu.module b/og_menu.module
index 8aedf40..359b0a4 100644
--- a/og_menu.module
+++ b/og_menu.module
@@ -269,6 +269,15 @@ function og_menu_get_context() {
  * Alter the node form's menu form.
  */
 function og_menu_form_node_form_alter(&$form, &$form_state) {
+  $link = $form['#node']->menu;
+  $type = $form['#node']->type;
+
+  $options = menu_parent_options(menu_get_menus(), $link['mlid'] ? $link : $type, $type);
+  // If no possible parent menu items were found, there is nothing to display.
+  if (empty($options)) {
+    return;
+  }
+
   $is_group_type = og_is_group_type('node', $form['#node']->type);
   $is_group_content = og_is_group_content_type('node', $form['#node']->type);
   // We modify the forms for group content and group content types.
