great mod. had to reinstall itemstats for joomla after an update.
one bug i have been encountering with itemstats and joomla is the white box behind the tooltip.
here is the quickfix i use to resolve this, im sure there is a better way.
* edit ../includes/joomla.php
around line 5540-5550 you should see:
- Code: Select all
function loadOverlib() {
global $mosConfig_live_site, $mainframe;
if ( !$mainframe->get( 'loadOverlib' ) ) {
// check if this function is already loaded
?>
<script language="javascript" type="text/javascript" src="<?php echo $mosConfig_live_site;?>/includes/js/overlib_mini.js"></script>
<script language="javascript" type="text/javascript" src="<?php echo $mosConfig_live_site;?>/includes/js/overlib_hideform_mini.js"></script>
<?php
just remark out the javascript part. should look like this
- Code: Select all
<!-- <script language="javascript" type="text/javascript" src="<?php echo $mosConfig_live_site;?>/includes/js/overlib_mini.js"></script>
<script language="javascript" type="text/javascript" src="<?php echo $mosConfig_live_site;?>/includes/js/overlib_hideform_mini.js"></script> -->
btw, this change is for joomla 1.0.13, but shouldl work with older versions.
always make a backup of your orig file and put a note where you made the change incase you need to undo this at a later date.