diff --git a/includes/content.inc b/includes/content.inc
index a00ddb71aaa8bb4720dd4fc4c06dd8614f1d1e23..823c2f88d0385785e6085d084d00ab59d7c57b66 100644
--- a/includes/content.inc
+++ b/includes/content.inc
@@ -454,6 +454,8 @@ function ctools_content_configure_form_defaults(&$form, &$form_state) {
       '#default_value' => isset($conf['override_title_text']) ? $conf['override_title_text'] : '',
       '#size' => 35,
       '#id' => 'override-title-textfield',
+      '#process' => array('ctools_dependent_process'),
+      '#dependency' => array('override-title-checkbox' => array(1)),
     );
     $form['aligner_stop'] = array(
       '#value' => '</div><div style="clear: both; padding: 0; margin: 0"></div>',
diff --git a/plugins/contexts/node.inc b/plugins/contexts/node.inc
index 6a4a1a70ad000be99732e8ce386fa8aaf801a07d..033e2031017bb4e82fbb4d7bb49351fd1f235ba1 100644
--- a/plugins/contexts/node.inc
+++ b/plugins/contexts/node.inc
@@ -99,7 +99,7 @@ function ctools_context_node_settings_form($conf, $external = FALSE) {
     '#title' => t('Enter the title or NID of a post'),
     '#type' => 'textfield',
     '#maxlength' => 512,
-    '#autocomplete_path' => 'ctools/node/autocomplete',
+    '#autocomplete_path' => 'ctools/autocomplete/node',
     '#weight' => -10,
   );
 
diff --git a/plugins/contexts/node_edit_form.inc b/plugins/contexts/node_edit_form.inc
index ac4b1920941536c48ebb19dc997023382d4ec552..cb3267a5a5b42691e34b70814587b12b69e2aaa1 100644
--- a/plugins/contexts/node_edit_form.inc
+++ b/plugins/contexts/node_edit_form.inc
@@ -78,7 +78,7 @@ function ctools_context_node_edit_form_settings_form($conf, $external = FALSE) {
     '#title' => t('Enter the title or NID of a post'),
     '#type' => 'textfield',
     '#maxlength' => 512,
-    '#autocomplete_path' => 'ctools/node/autocomplete',
+    '#autocomplete_path' => 'ctools/autocomplete/node',
     '#weight' => -10,
   );
 
diff --git a/views_content/plugins/content_types/views.inc b/views_content/plugins/content_types/views.inc
index 04522dd44f87631d6d0b1f4333219f09370534b3..cda845bc54284ac97bc9cce431404c9d1a0f42ea 100644
--- a/views_content/plugins/content_types/views.inc
+++ b/views_content/plugins/content_types/views.inc
@@ -317,6 +317,8 @@ function views_content_views_content_type_edit_form(&$form, &$form_state) {
     '#title' => t('Pager ID'),
     '#size' => 4,
     '#id' => 'use-pager-textfield',
+    '#process' => array('ctools_dependent_process'),
+    '#dependency' => array('use-pager-checkbox' => array(1)),
   );
   $form['pager_aligner_stop'] = array(
     '#value' => '</div><div style="clear: both; padding: 0; margin: 0"></div>',