To get a specific information from a repeater row (second line, for example) I use the following php code:
get_field(‘featured_1_title’);
How can I use the same logic to get a specific information from a repeater row inside another repeater row?
I tried: get_field(‘featured_1_1_sub_title’);
Didn’t work.
the pattern continues
"{$field}_{$row}_{$subfield}_{$row}_{$subfield}"
"{$field}_{$row}_{$subfield}_{$row}_{$subfield}_{$row}_{$subfield}"