Support

Account

Home Forums General Issues Form field disabled by default

Solving

Form field disabled by default

  • Is it possible to have disabled form fields? Possible uses:

    – Data that is added to ACF by WP All Import plugin
    – Disable fields based on user permission level

    Thanks.

  • Hi @Rimfya

    Thanks for the feature requests. I will add these to the to-do list for now, and add them in post v5.

    Cheers
    E

  • A temporary workaround I am using to prevent a user from adding text to a field which get its data generated by the server.

    add_action('admin_head', 'my_custom_css');
    function my_custom_css() {
      echo '<style>';
               .field_key-field_534dc7420db07 {display:none;}
            </style>';
    }
  • Hi Elliot,
    is this still in the todo ? it would be great : “Disable fields based on user permission level”
    Thanks for all …

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Form field disabled by default’ is closed to new replies.