I cant find the thread on this, but I had a similar issue...
As you are using Image Handler you may be able to "cure" it.
I fixed it by doing this:
There is a file called: includes/classes/bmz_image_handler.class.php
FTP this file to your local drive, make a backup, then open the file for editing.
Right at the bottom, you'll see this code:
PHP Code:
// we should parse old parameters here and possibly merge some inc case they're duplicate
$parameters .= ($parameters != '') ? ' ' : '';
return $parameters . 'style="position:relative" onmouseover="showtrail(' . "'$products_image_zoom','$alt',$width,$height,$zoomwidth,$zoomheight,this," . $this->zoom['startx'].','.$this->zoom['starty'].','.$this->zoom['width'].','.$this->zoom['height'].');" onmouseout="hidetrail();" ';
}
}
}
}
COMMENT IT OUT, like this... (put double slashes in front of the lines.. eg: //
PHP Code:
// we should parse old parameters here and possibly merge some inc case they're duplicate
// $parameters .= ($parameters != '') ? ' ' : '';
// return $parameters . 'style="position:relative" onmouseover="showtrail(' . "'$products_image_zoom','$alt',$width,$height,$zoomwidth,$zoomheight,this," . $this->zoom['startx'].','.$this->zoom['starty'].','.$this->zoom['width'].','.$this->zoom['height'].');" onmouseout="hidetrail();" ';
// }
// }
// }
//
//
//}
Then, directly below that, paste THIS code...
PHP Code:
// we should parse old parameters here and possibly merge some inc case they're duplicate
$parameters .= ($parameters != '') ? ' ' : '';
if (!($_GET['main_page']==FILENAME_PRODUCT_INFO)) {
return $parameters . 'style="position:relative" onmouseover="showtrail(' . "'$products_image_zoom','$alt',$width,$height,$zoomwidth,$zoomheight,this," . $this->zoom['startx'].','.$this->zoom['starty'].','.$this->zoom['width'].','.$this->zoom['height'].');" onmouseout="hidetrail();" ';
} else {
return $parameters . 'style="position:relative" onmouseover="showtrail(' . "\'$products_image_zoom\',\'$alt\',$width,$height,$zoomwidth,$zoomheight,this," . $this->zoom['startx'].','.$this->zoom['starty'].','.$this->zoom['width'].','.$this->zoom['height'].');" onmouseout="hidetrail();" ';
}
}
}
}
}
Save the file, and FTP it back to its original location. Overwrite the file that's on the server (you have a backup on your hard drive).
See if this fixes your problem.
Bookmarks