Skip to content

Instantly share code, notes, and snippets.

@wpmonks
Last active January 9, 2019 07:52
Show Gist options
  • Save wpmonks/361b7f7b30d843ad3870493d5e25aadf to your computer and use it in GitHub Desktop.
Save wpmonks/361b7f7b30d843ad3870493d5e25aadf to your computer and use it in GitHub Desktop.
Change ‘Deselect all’ for all forms in Gravity forms
add_filter( 'gform_checkbox_deselect_all_label', 'wpmonks_change_label', 10, 2 );
function wpmonks_change_label( $select_label, $field ){
return "My Custom Deselect All";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment