I know how to shuffle repeaters every time the page loads by adding this code in function.php:
// Function to randomize Advanced Custome Fields' Repeaters
function my_acf_load_value3( $value, $post_id, $field )
{
shuffle($value);
return $value;
}
// Randomize ACF Clients' Repeater
add_filter('acf/load_value/name=reapter-name', 'my_acf_load_value3', 10, 3);
Take note that the code above is working fine and it randomizing the repeater,But my problem is I dont know how to shuffle the SUB FIELDS inside repeater, any ideas? Thank you.