Oh Wait! One thing you COULD try, is adding this to your functions.php
:
add_filter('gfexcel_transformer_fields', function ($fields) {
if (!array_key_exists('chainedselect', $fields)) {
$fields['chainedselect'] = 'GFExcel\Field\SeparableField';
}
return $fields;
});
I’m not sure if this will work, but what I’ve read about the field, it sure looks like it could be a separable
field, and in that case this code should help.
If you have data this way, please let me know!
Also, you should make sure the fields are separated via the setting on the plugin, or using this hook:
add_filter('gfexcel_field_separated_chainedselect', '__return_true');
Please note that chainedselect
is what I think the field is called. If it has different name, please update all references to that other name.