Hi Support,
I have created a custom fields (Advance select ) with multiple select option into the user section.
Now I want to update this user meta fields through the custom hook.
I am trying to update the meta through the core wordpress function
$new_user_groups = array(
'r2Clips',
'r2_NewsGossip',
'r2_Lifestyle'
);
update_user_meta($user_id, 'user_groups', $new_user_groups );
But it is not working. Can you please suggest me how we can update the custom fields value for user ?