Skip to content

Instantly share code, notes, and snippets.

@NikV
Created September 6, 2015 14:00
Show Gist options
  • Save NikV/bfd478e721717995d696 to your computer and use it in GitHub Desktop.
Save NikV/bfd478e721717995d696 to your computer and use it in GitHub Desktop.
Modify The New Form Button
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