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;
}
}
?>
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 »








