Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save endurtech/8b2fcc4ba581eff9fe0b65bd6119b8df to your computer and use it in GitHub Desktop.

Select an option

Save endurtech/8b2fcc4ba581eff9fe0b65bd6119b8df to your computer and use it in GitHub Desktop.
Custom Checkbox "Select All" Label For All Forms or a Specific Form
<?php
//Custom Checkbox "Select All" Label For Specific Form (Replace _FORMID, example _4)
add_filter( 'gform_checkbox_select_all_label_FORMID', 'cform_checkbox_select_all_label', 10, 2 );
function cform_checkbox_select_all_label( $select_label, $field )
{
    return "MY CUSTOM LABEL";
}
?>
<?php
//Custom Checkbox "Select All" Label For All Forms
add_filter( 'gform_checkbox_select_all_label', 'cform_checkbox_select_all_label', 10, 2 );
function cform_checkbox_select_all_label( $select_label, $field )
{
    return "MY CUSTOM LABEL";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment