-
-
Save codearachnid/a06e13be7f01b81b838c to your computer and use it in GitHub Desktop.
/** | |
* Filter Gravity Forms select field display to wrap optgroups where defined | |
* USE: | |
* set the value of the select option to `optgroup` within the form editor. The | |
* filter will then automagically wrap the options following until the start of | |
* the next option group | |
*/ | |
add_filter( 'gform_field_content', 'filter_gf_select_optgroup', 10, 2 ); | |
function filter_gf_select_optgroup( $input, $field ) { | |
if ( $field->type == 'select' ) { | |
$opt_placeholder_regex = strpos($input,'gf_placeholder') === false ? '' : "<\s*?option.*?class='gf_placeholder'>[^<>]+<\/option\b[^>]*>"; | |
$opt_regex = "/<\s*?select\b[^>]*>" . $opt_placeholder_regex . "(.*?)<\/select\b[^>]*>/i"; | |
$opt_group_regex = "/<\s*?option\s*?value='optgroup\b[^>]*>([^<>]+)<\/option\b[^>]*>/i"; | |
preg_match($opt_regex, $input, $opt_values); | |
$split_options = preg_split($opt_group_regex, $opt_values[1]); | |
$optgroup_found = count($split_options) > 1; | |
// sometimes first item in the split is blank | |
if( strlen($split_options[0]) < 1 ){ | |
unset($split_options[0]); | |
$split_options = array_values( $split_options ); | |
} | |
if( $optgroup_found ){ | |
$fixed_options = ''; | |
preg_match_all($opt_group_regex, $opt_values[1], $opt_group_match); | |
if( count($opt_group_match) > 1 ){ | |
foreach( $split_options as $index => $option ){ | |
$fixed_options .= "<optgroup label='" . $opt_group_match[1][$index] . "'>" . $option . '</optgroup>'; | |
} | |
} | |
$input = str_replace($opt_values[1], $fixed_options, $input); | |
} | |
} | |
return $input; | |
} |
This worked great. Thanks
This is fantastic, thank you so much! I'm shocked that something like this hasn't been implemented in Gravity Forms core yet.
Works like a charm. Thanks
I've changed line 11 to:
if ( $field->type == 'select' || $field->type == 'multiselect' ) {
to make it work for my use-case with multiselect too.
Thank you! It works like a charm!
Somehow the placeholder isn't disabled with this script anymore. So when your field is not mandatory, you should do some validation yourself.
Where is this code placed to enable the optgroup option?
I just ran into this today and found it quite useful. I noticed that it didn't seem to support ungrouped options at the beginning so I took a stab at my own version: https://gist.github.com/aaemnnosttv/72d0d34fad21d3f906ac9f3bdd61bd50
I just ran into this today and found it quite useful. I noticed that it didn't seem to support ungrouped options at the beginning so I took a stab at my own version: https://gist.github.com/aaemnnosttv/72d0d34fad21d3f906ac9f3bdd61bd50
Yes, it messes things up when 1st option isnt grp option
I'm using the update proposed by @aaemnnosttv per https://gist.github.com/codearachnid/a06e13be7f01b81b838c#gistcomment-2724704 pointing out the important fact that ungrouped options at the start break things as this code is.
Exactly what I was looking for. Brilliant! Thank you much.
Is this seriously still not supported natively?
Thanks for this! Had to change the regex to expect a space after value='[value]'
, and I changed it so the "optgroup" was the label instead of the value, since the values were coming from an array in PHP, and it just replaced the optgroup
item over and over and left me with one optgroup. Otherwise, this was a huge help!
<\s*?option\s*?value='([^<>]+)'\s*?>optgroup<\/option\b[^>]*>
I don't know how long you have been working on this, but perfect! I had my own implementation which worked, but unfortunately became broken after field validation. So tried yours and it is all good.