Support

Account

Home Forums Bug Reports Upgrade to 5.6 duplicates all text type fields as disabled Reply To: Upgrade to 5.6 duplicates all text type fields as disabled

  • I found the culprit, if you have a own field e.g. pre 5.6 like this:

    class acf_field_mytheme_identifier extends acf_field_text {
        function __construct()
        {
            // vars
            $this->name = 'mytheme_identifier';
            $this->label = MyTheme::_("Identifier");
            $this->category = 'choice';
            $this->defaults = array(
                'default_value'     => "",
                'maxlength' => '',
                'placeholder' => '',
                'prepend' => '',
                'append' => '',
                'readonly' => true,
                'disabled' => 0,
            );
            acf_field::__construct();
        }

    it must be now

    class acf_field_mytheme_identifier extends acf_field_text {
        function initialize()
             ...
        }

    No construct anumore