diff --git a/commons_misc.features.inc b/commons_misc.features.inc
index 391942c..9ba2578 100644
--- a/commons_misc.features.inc
+++ b/commons_misc.features.inc
@@ -9,10 +9,6 @@
  */
 function commons_misc_ctools_plugin_api() {
   list($module, $api) = func_get_args();
-  if ($module == "page_manager" && $api == "pages_default") {
-    return array("version" => "1");
-  }
-  list($module, $api) = func_get_args();
   if ($module == "strongarm" && $api == "strongarm") {
     return array("version" => "1");
   }
diff --git a/commons_misc.info b/commons_misc.info
index 79b44ca..d980b97 100644
--- a/commons_misc.info
+++ b/commons_misc.info
@@ -11,7 +11,6 @@ dependencies[] = node
 dependencies[] = strongarm
 dependencies[] = user
 datestamp = 1355530534
-features[ctools][] = page_manager:pages_default:1
 features[ctools][] = strongarm:strongarm:1
 features[features_api][] = api:1
 features[page_manager_handlers][] = node_view_panel_context
@@ -24,4 +23,3 @@ features[user_permission][] = view own unpublished content
 features[variable][] = theme_adaptivetheme_settings
 features[variable][] = theme_commons_origins_settings
 features[variable][] = user_register
-features_exclude[dependencies][page_manager] = page_manager
diff --git a/commons_misc.pages_default.inc b/commons_misc.pages_default.inc
deleted file mode 100644
index 87d3c16..0000000
--- a/commons_misc.pages_default.inc
+++ /dev/null
@@ -1,82 +0,0 @@
-<?php
-/**
- * @file
- * commons_misc.pages_default.inc
- */
-
-/**
- * Implements hook_default_page_manager_handlers().
- */
-function commons_misc_default_page_manager_handlers() {
-  $export = array();
-
-  $handler = new stdClass();
-  $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */
-  $handler->api_version = 1;
-  $handler->name = 'node_view_panel_context';
-  $handler->task = 'node_view';
-  $handler->subtask = '';
-  $handler->handler = 'panel_context';
-  $handler->weight = -98;
-  $handler->conf = array(
-    'title' => 'Fallback panel',
-    'no_blocks' => 0,
-    'pipeline' => 'ipe',
-    'body_classes_to_remove' => '',
-    'body_classes_to_add' => '',
-    'css_id' => '',
-    'css' => '',
-    'contexts' => array(),
-    'relationships' => array(),
-  );
-  $display = new panels_display();
-  $display->layout = 'two_66_33';
-  $display->layout_settings = array();
-  $display->panel_settings = array(
-    'style_settings' => array(
-      'default' => NULL,
-      'two_66_33_top' => NULL,
-      'two_66_33_first' => NULL,
-      'two_66_33_second' => NULL,
-      'two_66_33_bottom' => NULL,
-    ),
-  );
-  $display->cache = array();
-  $display->title = '';
-  $display->content = array();
-  $display->panels = array();
-    $pane = new stdClass();
-    $pane->pid = 'new-1';
-    $pane->panel = 'two_66_33_first';
-    $pane->type = 'node_content';
-    $pane->subtype = 'node_content';
-    $pane->shown = TRUE;
-    $pane->access = array();
-    $pane->configuration = array(
-      'links' => 1,
-      'no_extras' => 0,
-      'override_title' => 1,
-      'override_title_text' => '',
-      'identifier' => 'fallback',
-      'link' => 0,
-      'leave_node_title' => 1,
-      'build_mode' => 'full',
-      'context' => 'argument_entity_id:node_1',
-    );
-    $pane->cache = array();
-    $pane->style = array(
-      'settings' => NULL,
-    );
-    $pane->css = array();
-    $pane->extras = array();
-    $pane->position = 0;
-    $pane->locks = array();
-    $display->content['new-1'] = $pane;
-    $display->panels['two_66_33_first'][0] = 'new-1';
-  $display->hide_title = PANELS_TITLE_FIXED;
-  $display->title_pane = 'new-1';
-  $handler->conf['display'] = $display;
-  $export['node_view_panel_context'] = $handler;
-
-  return $export;
-}
