Support

Account

Home Forums Backend Issues (wp-admin) Conditionally registering field on acf/update_value Reply To: Conditionally registering field on acf/update_value

  • I assumed this was to show the field in the admin. acf/prepare_field is called just before the field is shown in the admin and can be used to not show a field by returning false. You register the field as normal than you create a filter and in the filter you check the value of the other field and then you return the field or FALSE depending on that check.