add_filter('frm_get_paged_fields', 'get_extra_form_fields', 10, 3);Change 25 to the ID of your form.
function get_extra_form_fields($fields, $form_id, $error = false) {
if ($form_id == 25) { //change 25 to the id of the form to change
shuffle($fields);
}
return $fields;
}
Please login or Register to submit your answer
Perfect, it works excellent, but if you want to change the order of the answers?