Support

Account

Home Forums General Issues Updating sub field value in nested repeater and row using acf/save_post Reply To: Updating sub field value in nested repeater and row using acf/save_post

  • After the first have_rows() loop you no longer need to supply the post ID

    
    // post id not needed in sub loops
    if( have_rows('codegroep') ):
    while( have_rows('codegroep') ) : 
    

    Other than this the only reason I know of that the row cannot be update is that there are not rows to begin with and have_rows() is false. You cannot use have_rows() loops to update repeaters that have no values/rows.