Gravity Forms “Oops! We could not locate your form.” Workaround

Form Plugin Fix

 

If you’ve made a copy of a site that uses Gravity Forms (say, to work on locally) and you are getting the error “Oops! We could not locate your form.” here is something you can do to restore the forms.

Open forms-model.php and revise these lines (approx 322-323):

if(!is_array(rgar($form, "notifications")))
       return;

to this:

if(!is_array(rgar($form, "notifications")))
       return $form;

Your form should work again.

Last updated on