hello, sorry for taking so long to answer you.
It seems that the reason for the problem is the lack of the jQuery library.
In your functions.php file adds:
add_action( 'wp_enqueue_script', 'load_jquery' );
function load_jquery() {
wp_enqueue_script( 'jquery' );
}
I hope this will solve your problem