Forked from benfavre/gravity_forms_bootstrap_wordpress.php
Created
August 6, 2013 22:32
-
-
Save thinkstylestudio/6169385 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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