Support

Account

Home Forums Add-ons Repeater Field Order repeatable field by date in back-end Reply To: Order repeatable field by date in back-end

  • Tried all suggested solutions, nothing worked unfortunately.

    For instance, one of the examples, this is the code I use in my function.php:

    function my_acf_update_value( $value, $post_id, $field  ) {
    	$mc_sort_id_FIELD_KEY = 'field_59711bd65b276'; // Set this to the field key of your field called "mc_sort_id".
    	
    	$order = [];
    
    	foreach ( $repeater as $i => $row ) {
    		$order[ $i ] = $row[ $mc_sort_id_FIELD_KEY ];
    	}
    
    	array_multisort( $order, SORT_ASC, $value );
    	
    	return $value;
    }
    add_filter( 'acf/update_value/name=datumprik', 'my_acf_update_value', 10, 3 );

    And this is where I got the values “field_59711bd65b276” and “datumprik”):

    Screenshot

    So I want the backend to order ascending on the “datumprik” field. Am I missing something or is there something wrong?