Exclude fields in export file in specific form
-
Hello.
About your answer on other post:
add_filter(“gfexcel_field_disable”, function ($disabled, $field) {
$field_ids_to_disable = array(1, 2);
if (in_array($field[‘id’], $field_ids_to_disable)) {
$disabled = true;
}
return $disabled;
}, 10, 2);Hpw to make that on specific form?
Thanks for your help!
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Exclude fields in export file in specific form’ is closed to new replies.