3

How to change webform module submit button?

http://drupal.org

Hi guys i just facing this little problem

I created a little module for webform module form submit button alter

<?php
function image_on_submit_form_alter(&$form, $form_state, $form_id) {
   
    switch ($form_id) {
       
        //change this to form_id of the form you want to alter
        case 'webform_client_form_225' :
           
            //This replaces default submit on search form with image
            $form ['submit'] ['#type'] = 'image_button';
            $form ['submit'] ['#value'] = 'Search';
            $form ['submit'] ['#src'] = 'sites/all/themes/theme_name/images/lt_submit.png';
            break;
   
    }
}
?>

everything works fine except one problem. It duplicates Submit button now i see image submit button and normal form submit button as well. Any help on this one would be highly appreciated.

Read »
Created by drupalcoder 1 year 27 weeks ago
Category: News   Tags:

PSD to Drupal Theme

Drupal Development

Module Development

Get an Estimate

Tags for How to change webform module submit button?

Recent comments