I really do like these themes. Just trying to be careful is all....
So first few files I checked (I'm no expert) but I think these lines need changed:
In header. php
Code:
<? wp_head(); ?>
<script src="<?php bloginfo('template_directory'); ?>/js/jquery.tools.min.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_directory'); ?>/js/init.js" type="text/javascript"></script>
</head>
changed to read:
Code:
<script src="http://cdn.jquerytools.org/1.2.7/full/jquery.tools.min.js"></script>
<script src="<?php bloginfo('template_directory'); ?>/js/init.js" type="text/javascript"></script>
<?php wp_head(); ?>
</head>
and in Comments.php line 13 needs fixed:
to this
That's all I found that I thought needed changed because testing locally the comments.php gave me a syntax error and the header.php file was printing the header hook in the page source.....