Hi,
The Pro version will have to use the new
wp_plugin_dependencies_slug
filter so the plugin requiring ACF can also work with ACF Pro.
add_filter('wp_plugin_dependencies_slug', function ($slug) {
if ('advanced-custom-fields' === $slug) {
$slug = 'advanced-custom-fields-pro';
}
return $slug;
});