view. */ function hook_views_bulk_operations_form_alter(&$form, &$form_state, $vbo) { if ($form_state['step'] == 'views_form_views_form') { // Alter the first step of the VBO form (the selection page). $form['select']['#title'] = t('Bulk operations'); } elseif ($form_state['step'] == 'views_bulk_operations_config_form') { // Alter the configuration step of the VBO form. } elseif ($form_state['step'] == 'views_bulk_operations_confirm_form') { // Alter the confirmation step of the VBO form. } }