Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Doeke Norg

    (@doekenorg)

    Hi @bravo-computing,

    Unfortunately I do not own this plugin, so it’s really difficult for me to help you to debug this.

    If you have any programming experience you could try to make your own field transformer. The FAQ has some info in regards to this option.

    I’m contemplating buying Elite Licence pack, but $260 is a lot of money for me for a hobby project. I’d love to help, but at this moment I’m really sorry to say that I can’t ??

    Plugin Author Doeke Norg

    (@doekenorg)

    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.

    Thread Starter Mathias Brask

    (@bravo-computing)

    Hi Doeke.

    Thanks for the quick reply. Unfortunately it does not seem to work. Can i somehow grant you acces to the site, and provide some kind of FTP details for you to look deeper into this problem?

    I also have the full package (unlimited) for Gravity Forms.

    best regards.

    Plugin Author Doeke Norg

    (@doekenorg)

    If you can get me access to the plugin you can mail me on [email protected].

    I’d love to the a look at it!

    Thread Starter Mathias Brask

    (@bravo-computing)

    Email sent.

    Plugin Author Doeke Norg

    (@doekenorg)

    Hi @bravo-computing,

    Could you try again? I haven’t received a mail.

    Plugin Author Doeke Norg

    (@doekenorg)

    Fixed behind the scenes. Solution provided is accurate; even the field name!??

    This will be added in the next release, after that this code can be removed with no problem.

    Plugin Author Doeke Norg

    (@doekenorg)

    hi @bravo-computing,

    Just wanted to let you know that 1.6.0 has native support now, so you can remove the custom code we added!

    Have a nice day!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Chained selections not appearing’ is closed to new replies.