Created
September 6, 2015 14:00
-
-
Save NikV/bfd478e721717995d696 to your computer and use it in GitHub Desktop.
Modify The New Form Button
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
function modify_gform_new_form_button() { | |
return '<input id="save_new_form" type="button" class="button button-large button-primary my-custom-button-class" value="' . esc_html__( 'Build a Form', 'gravityforms' ) . '" onclick="saveNewForm();" tabindex="9002" />'; | |
} | |
add_filter('gform_new_form_button', 'modify_gform_new_form_button'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment