Get Nested Form Entry Value or Count Repeater (Beta) number of rows and calculate [RESOLVED]

Hi Nana,

Yes, I am GhanaianđŸ˜…. You’re welcome. The solution you’re using with GFAPI appears to be querying the entire entries for the Nested form entries. Can you try the solution I suggested earlier and see if it works for you;

$parent_entry = new GPNF_Entry( $entry );
$nested_form_entries = $parent_entry->get_child_entries( 32 );

This should get only the Nested forms entries for the current parent entry submitted.

So replace this line of code below with what’s above;

// Get the nested form entries
$nested_form_entries = GFAPI::get_entries([
‘form_id’ => 66,
‘entry_meta’ => [
‘parent_entry_id’ => $entry_id
]
]);

Best,