Remove hardcoded javascript files from page--front.tpl.php.
<script src="misc/jquery.js" type="text/javascript"></script> <script src="<?php print drupal_get_path('theme', 'bluemasters') . '/js/bluemasters.js'?>" type="text/javascript"></script>
/** * Add javascript files for front-page jquery slideshow. */ if (drupal_is_front_page()) { drupal_add_js(drupal_get_path('theme', 'bluemasters') . '/js/bluemasters.js'); }
Replace the following code
$(document).ready( function() { . . .
with this code
jQuery(document).ready(function($) { . . .
I am working on this issue. Will fillow a comprehensive patch file with all appropriate changes.
Done and committed
fixed in 7.x-1.1, http://drupal.org/node/1100654
Comments
Comment #1
gtsopour commentedReplace the following code
with this code
Comment #2
gtsopour commentedI am working on this issue.
Will fillow a comprehensive patch file with all appropriate changes.
Comment #3
gtsopour commentedDone and committed
Comment #4
skounis commentedfixed in 7.x-1.1, http://drupal.org/node/1100654