forbiddenChunk’s link works great for members, but not teams. I tried modifying it to allow adding acf to teams:
$field_groups = array_merge(
acf_get_field_groups( array( 'post_type' => 'wc_membership_plan' ) ),
acf_get_field_groups( array( 'post_type' => 'wc_user_membership' ) ),
acf_get_field_groups( array( 'post_type' => 'wc_memberships_team' ) )
);
.. but this didnt work. any ideas how to allow ACF fields in wp-admin pages for woo teams?