*RESOLVED! – I just wanted to post my solution to this issue, in case it helps someone else.
After doing some digging through the code and using a browser-debugger, I finally discovered what was causing my issue in the admin panel (form editor was not showing up and buttons did not work correctly). The issue actually stemmed from a javascript error prior to the Awesome Surveys plugin loading. Unfortunately, most browsers do not continue loading javascript files once an error is encountered so later scripts do not get to run. The error in my case was an issue with the WordPress core “media.js” file not being able to locate the wp.media
javascript object. The cause for this was a failure by my theme to load the WordPress Media Manager javascript files.
To solve this issue, you need to add the following to your functions.php
file:
/**
* Load media files needed for uploader
*/
function load_wp_media_files()
{
wp_enqueue_media();
}
add_action( 'admin_enqueue_scripts', 'load_wp_media_files' );
This solved the issue for me and allowed me to edit the survey forms again.