Skip to content

Instantly share code, notes, and snippets.

@NikV
Created September 7, 2015 21:35
Show Gist options
  • Save NikV/e7fcc4818f2e8ab8244b to your computer and use it in GitHub Desktop.
Save NikV/e7fcc4818f2e8ab8244b to your computer and use it in GitHub Desktop.
Change the label for the overall Gravity Forms Settings Save Button
function modify_gform_settings_save_button() {
return '<input type="submit" name="submit" value="' . esc_html__( 'Confirm Settings', 'gravityforms' ) . '" class="button-primary gfbutton my-button class"/> Remember, be responsible with what you save here!';
}
add_filter('gform_settings_save_button', 'modify_gform_settings_save_button');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment