-- url of the page with the problem -- : fabulosa.ch
-- HikaShop version -- : 2.6.0
-- Joomla version -- : 3.4.4
-- PHP version -- : 5.4.44
Hi
I have a problem with the display of average rating when hovering over. See Image here:
www.fabulosa.ch/images/tooltipError.png
I have noticed that the the jQuery funtion for the tooltip is different than on site where it is working.
Working:
jQuery(document).ready(function()
{
jQuery('.hasTooltip').tooltip({"html": true,"container": "body"});
});
Not working:
jQuery(function($) {
$('.hasTip').each(function() {
var title = $(this).attr('title');
if (title) {
var parts = title.split('::', 2);
var mtelement = document.id(this);
mtelement.store('tip:title', parts[0]);
mtelement.store('tip:text', parts[1]);
}
});
var JTooltips = new Tips($('.hasTip').get(), {"maxTitleChars": 50,"fixed": false});
});
Do you have any clue where this could be coming from?
Thanks in advance for helping
Best regards