Skip to content

Commit

Permalink
Merge pull request #8 from frc/feature/allow-gforms-address
Browse files Browse the repository at this point in the history
Remove address gform field from blacklist
  • Loading branch information
crsohara authored May 24, 2021
2 parents f5868c5 + 7591d07 commit 2f96f56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/plugin/gravityforms.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function force_gforms_settings($form, $is_new) {
function disable_bad_gforms_fields($field_groups) {
$disable = [
'standard_fields' => ['list'],
'advanced_fields' => ['name', 'address']
'advanced_fields' => ['name']
];
foreach ($field_groups as $gkey => $field_group) {
if (!isset($disable[$field_group['name']])) continue;
Expand Down

0 comments on commit 2f96f56

Please sign in to comment.