Hey,
This is not a feature built into the plugin but you can accomplish this with the following code:
add_action('acf/save_post', function ($post_id) {
$value = get_field('my_crop_image_field', $post_id);
if ($value) {
if (!is_numeric($value)) {
$value = $value['ID'];
}
update_post_meta($post_id, '_thumbnail_id', $value);
// Check if field is here AND empty
} elseif($value === false) {
delete_post_meta($post_id, '_thumbnail_id');
}
}, 11);
Just make sure you update my_crop_image_field
so it’s the actual name of the ACF crop image field.
The code is originally from this thread.