Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thinkstylestudio/6169385 to your computer and use it in GitHub Desktop.
Save thinkstylestudio/6169385 to your computer and use it in GitHub Desktop.
// filter the Gravity Forms button type
add_filter("gform_submit_button", "form_submit_button", 10, 2);
function form_submit_button($button, $form){
return "<input type='submit' class='button gform_button btn btn-flat' id='gform_submit_button_{$form["id"]}' />";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment