Hi Kyle,
I know how to duplicate a site locally, however with the Ability theme, it doesn’t work.
Here is how I managed to make it working :
1. Download http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js to the ability js folder
2. Load it in functions.php :
wp_register_script(‘jquery’, get_template_directory_uri() . ‘/js/jquery.min.js’);
3. Remove this line to prevent loading the remote file :
wp_register_script(‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js’);
Hope this helps to improve the theme.
Thanks,
flips