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”):
So I want the backend to order ascending on the “datumprik” field. Am I missing something or is there something wrong?
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.