I have the same problem but the deleting of this code
Code: Select all
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
prevent the correct work to the bar....i have resolved instead this provlment deleting this part in the mchat in overall_header template
Code: Select all
<script type="text/javascript" src="{ROOT_PATH}mchat/jquery_core_mini.js"></script>
And i write this part in this way because if you have a custom page out the main board forder the js script doesn't work
from
Code: Select all
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jquery.hoverIntent.minified.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
to
Code: Select all
<script type="text/javascript" src="{ROOT_PATH}js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="{ROOT_PATH}js/jquery.hoverIntent.minified.js"></script>
<script type="text/javascript" src="{ROOT_PATH}js/scripts.js"></script>