Hi there,
Thanks for contacting us. Please follow the instructions to solve the problem.
Remove the code from the main.js file
templates/shaper_aspasia/js/main.js
// fix conflicting with mootools
if (MooTools != undefined) {
var mHide = Element.prototype.hide;
Element.implement({
hide: function() {
if ($('[data-toggle="tooltip"]').attr('itemprop')) {
return this;
}
mHide.apply(this, arguments);
}
});
}
-Thanks