diff --git a/apachesolr_autocomplete.module b/apachesolr_autocomplete.module
index 67b2be3..7a9563b 100755
--- a/apachesolr_autocomplete.module
+++ b/apachesolr_autocomplete.module
@@ -44,6 +44,14 @@ function apachesolr_autocomplete_form_search_block_form_alter(&$form, $form_stat
 }
 
 /**
+ * Implementation of hook_form_FORM_ID_alter().
+ */
+function apachesolr_autocomplete_form_apachesolr_search_custom_page_search_form_alter(&$form, $form_state) {
+  $element = &$form['basic']['keys'];
+  apachesolr_autocomplete_do_alter($element);
+}
+
+/**
  * Helper function to do the actual altering of search forms.
  *
  * @param $element
