Hi,
We have tried to create a form in GF. We have existing forms and they can viewed but not edited.
When we open wp-admin/admin.php?page=gf_new_form > select blank form > add form title > click create blank form we get the normal screen. Firstly we were unable to scroll down on the sidebar on the right to see the available input types. We did resolve this by putting this inside the functions.php:
add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
echo '<style>
.gforms_edit_form .editor-sidebar {
overflow:auto;
}
</style>';
}
But this only resolved the no scrolling issue. There is far more at play here. We enabled and disabled the conflict mode and cleared the cache but nothing.
When we looked at console in dev tools we see a bunch of JS files not loading:
Uncaught TypeError: gform.initializeOnLoaded is not a function
at gravityforms.min.js?ver=2.8.13:1:37018
form_admin.min.js?ver=2.8.13:1 Uncaught TypeError: gform.initializeOnLoaded is not a function
at form_admin.min.js?ver=2.8.13:1:32460
admin.php?page=gf_edit_forms&id=6:3790 Uncaught TypeError: gform.addAction is not a function
at admin.php?page=gf_edit_forms&id=6:3790:86
layout_editor.min.js?ver=2.8.13:1 Uncaught TypeError: gform.addAction is not a function
at initLayoutEditor (layout_editor.min.js?ver=2.8.13:1:11984)
at layout_editor.min.js?ver=2.8.13:1:13169
form_editor.min.js?ver=2.8.13:1 Uncaught TypeError: gform.addFilter is not a function
at form_editor.min.js?ver=2.8.13:1:101865
admin.php?page=gf_edit_forms&id=6:5567 Uncaught TypeError: gform.addFilter is not a function
at admin.php?page=gf_edit_forms&id=6:5567:10
load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,jquery-ui-core,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.5.3:2 jQuery.Deferred exception: gform.applyFilters is not a function TypeError: gform.applyFilters is not a functionwp-content/plugins/gravityforms/js/form_editor.min.js?ver=2.8.13:1:48827)
wp-admin/load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,jquery-ui-core,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.5.3:2:27330)
wp-admin/load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,jquery-ui-core,utils,wp-polyfill-inert,regenerator-runtime,wp-polyfill,wp-hooks&ver=6.5.3:2:27028)
Do you have any suggestions?