This what Im doing:
- I have 2 ACF fields inside the option page.
testandtest_my_group - I have 1 group inside my option page name
my_group - The field
test_my_grouplocated insidemy_groupACF group.
My Problem is:
- I can easily get the
testfield value inside Timber Tiwg template using the tag{{ options.test }} - I fail to get the
test_my_groupvalue as its inside the groupmy_group - If I move the field
test_my_groupout sidemy_group, Now I can use{{ options.test_my_group}}without any problem.
=== In normal CPT and Posts, I dont have any problem caling the field value if located inside a ACF group by setting the group first then calling the child filled.
{% set group = post.meta('group') %}
{{ group.first_field }}
{{ group.second_field }}
My Question IS:
How to call the group sub-fields of an ACF group inside option page?