Hi,
I have a form which generates a Custom Post type. There was an issue with this not repopulating the user-id field when edited through ACF. I now have the code fix for this..
add_filter('frm_acf_supported_field_types', 'acf_map_ff_userid'); function acf_map_ff_userid( $field_types ) { $field_types['user_id'][] = 'user'; return $field_types; } But the problem I have is that the user-id field is empty for the majority of 400 records. Does anyone know of a quick way to update this field without manually updating each record. Thanks, Helen
When similar things have happened to me, I've written a small PHP script to fix the data.
Thanks, I thought this was probably the case. Sadly my PHP skills aren't that strong.
Please login or Register to submit your answer