WAIT: ACF field get value from option page instead from post

Hi
I have set up an ACF field groups (name: social_profile). I have assigned it to both an option page and to several CPTs. When, for a given CPT, I try to retrieve the value for a given ACF field (using the familiar {acf_social_profile} call), it returns me the value assigned to the Option page, not the ones stored with the post.

The solution to the problem is to create two separate Field Groups - one for the option page (e.g. option_social_profile), the other for CPT (social_profile), but this is an unprofessional (non-maintainable) solution.
Is there any solution to this problem, e.g., is there any other call of type {acf_} that I don’t know about?
thanks in advance for your help

Hi,

thank you. I was able to replicate the issue locally and I’ve added it to the bug tracker. As a workaround, this should work {echo:get_field('acf_field_id')}, just replace acf_field_id with the name of your field.
If you want to fetch from options, use this: {echo:get_field('acf_field_id','options')} . Also, don’t forget to allow get_field function to run.

You can read more about it here: ACF | get_field()

Thanks,
Matej