update_post_meta not adding anything.(Nor add_post_meta)
Found the solution in this post: update_post_meta and update_field ony working when saving the post The solution is to use update_field because update_post_meta uses a different method to update fields than ACF does. Do note that this is the correct order of using the code update_field($meta_key, $meta_value, $post_ID);.