Hi @mauriciopluri,
Turns out, this also is a separable field, and in the last update I build something for that. Funny how that works ??
Although I will be releasing something to make this a bit prettier for products, you are able to activate this by adding the following hook:
add_filter('gfexcel_transformer_fields', function ($fields) {
if (!array_key_exists('singleproduct', $fields)) {
$fields['singleproduct'] = 'GFExcel\Field\SeparableField';
}
return $fields;
});
**This is a temporary fix**. Like I said, I will be releasing an update for this field in the next release. The code above is update-proof, and will not break things when the update comes. But still you should remove this code at the update. I will let you know in the comments below when that will be.
I would suggest you enable the splitting of complex fields in the general settings for this plugin. If you don’t want to, you can enable the splitting for this field only, by using the following hook:
add_filter('gfexcel_field_separated_singleproduct', '__return_true');
Please let me know if this helps you out for now!