As you can see I have a repeater field that is pulling in a post objective (postage cost). This custom post type has a field called ‘postage_cost’. I need to be able to pull in that value to the number field (postage type value) as seen in the screenshot – how can I do this?
You will need to add custom JS to ACF. You will need to add a JS action that fires when the field changes. In this action you will need to make an AJAX request to get the value from the selected CPT and then update the text/number field.
Targeting a sibling to update in a repeater based on the field that was changed
// field_XXXXXX represents field to be updated
// {INPUT TYPE} represents the field type of the actual field you will be updating
field.closest('.acf-row').find('[data-key="field_XXXXXX'] .acf-input {INPUT TYPE}');