Skip to content

Instantly share code, notes, and snippets.

@wpmonks
Created December 16, 2018 12:05
Show Gist options
  • Save wpmonks/63f3ff610524978c5382b7b06f0a810c to your computer and use it in GitHub Desktop.
Save wpmonks/63f3ff610524978c5382b7b06f0a810c to your computer and use it in GitHub Desktop.
Change 'Select All' for all gravity forms
add_filter( 'gform_checkbox_select_all_label', 'wpmonks_change_label', 10, 2 );
function wpmonks_change_label( $select_label, $field ){
return "My Label";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment