Created
September 7, 2015 21:35
-
-
Save NikV/e7fcc4818f2e8ab8244b to your computer and use it in GitHub Desktop.
Change the label for the overall Gravity Forms Settings Save 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_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