ACF Repeater Query Loop - ACF Font Awesome Icons plugin author has provided a quick workaround to be able to retrieve ACF FA field type data contained within a repeater. Link to thread there.
Add this to child theme functions.php (be sure to replace the field name ‘icon_testing’ with the field name you are using in your repeater):
function fetch_fontawesome_icon_from_loop() {
$acf_row = \Bricks\Query::get_loop_object();
if ( isset( $acf_row['icon_testing'] ) ) {
return $acf_row['icon_testing'];
}
}
Then use this as your Bricks Dynamic Data tag (or change function name accordingly to your needs):
{echo:fetch_fontawesome_icon_from_loop()}
Confirmed this is working successfully!!