Skip to content

Instantly share code, notes, and snippets.

@ewillhite
Created February 12, 2014 17:58
Show Gist options
  • Save ewillhite/8960992 to your computer and use it in GitHub Desktop.
Save ewillhite/8960992 to your computer and use it in GitHub Desktop.
Drupal 7 Search Block Form Alter
<?php
// Form Alter
function qhr_form_search_block_form_alter(&$form, &$form_state, $form_id) {
$form['search_block_form']['#default_value'] = t('search'); // Set a default value for the textfield
$form['actions']['submit']['#value'] = t('GO!'); // Change the text on the submit button
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment