Hi
Thanks for sharing the theme. Here are few steps that may fix the issue.
1. Open the footer.php and comment the below piece of code by adding // in-front of that,
// $ftlink = new ftlink();
// do_action('wp_footer');
2. Open header.php and comment the below piece of code which loads the jquery.min.js,
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
3. In your theme’s folder named “functions”, edit the file _default-functions.php and comment the following lines which are there inside the function named loadDefaultScripts,
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery',get_bloginfo('template_url').'/js/jquery.min.js');
wp_enqueue_script( 'jquery' );
Once you make the changes, please let me know if it helped.