PHPTemplate

Changing the Search form in Drupal 6.0

preprocess_search_block_form
Date: 
Mon, 03/10/2011

To override the search form in Drupal 6 you need insert the code below and edit the PHP Template file in your theme.

You will need to change the YOUR_SITE_NAME for the preprocess and the image file path.

function YOUR_SITE_NAME_preprocess_search_block_form(&$vars, $hook) {
// Modify elements of the search form
unset($vars['form']['search_block_form']['#title']);
Read more

Syndicate content