Skip to content

Instantly share code, notes, and snippets.

@nkb-bd
Last active September 8, 2021 05:10
Show Gist options
  • Save nkb-bd/32d1060d10a2bc03a09d9545e41e0aee to your computer and use it in GitHub Desktop.
Save nkb-bd/32d1060d10a2bc03a09d9545e41e0aee to your computer and use it in GitHub Desktop.
Randomize the form Inputs of FluentForms
<?php
// Add this function to function.php and change target form ID
add_filter('fluentform_rendering_form', function ($form) {
// change form ID
$targetFormId = 108;
if ($form->id != $targetFormId) {
return $form;
}
shuffle($form->fields['fields']);
return $form;
}, 10, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment