Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @gkina,

    Yes, this was removed. This really doesn’t have any purpose for any users, other than developers. If you still want to be able to modify field keys (which will be used as the metakey in the database), you can use this code:

    
    add_filter('directorist_custom_field_meta_key_field_args', function ($args) {
        $args['type'] = 'text';
        return $args;
    });
    

    Regards,
    Mahdi.

    Thread Starter gkina

    (@gkina)

    Thanks Mahdi!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to find key field in a custom field text’ is closed to new replies.