How to Customize the Search Form

Below is the code that you can use to remove the Search Form button text and replace with your own:

/** Customize search form input button text */
add_filter( 'genesis_search_button_text', 'custom_search_button_text' );
function custom_search_button_text($text) {
    return esc_attr('Go');
}

Below is the code that you can use to remove the Search Form input box text and replace with your own:

/** Customize search form input box text */
add_filter( 'genesis_search_text', 'custom_search_text' );
function custom_search_text($text) {
    return esc_attr('Enter keywords, hit enter;');
}