ok found the error.
so if somebody needs to remove mootools from frontend and has the same tooltip bug here is the solution.
search this file
/libraries/joomla/html/html/behavior.php
and comment this block
Code: |
// Attach tooltips to document
//$document = JFactory::getDocument();
//$document->addScriptDeclaration("
//window.addEvent('domready', function() {
// $$('$selector').each(function(el) {
// var title = el.get('title');
// if (title) {
// var parts = title.split('::', 2);
// el.store('tip:title', parts[0]);
// el.store('tip:text', parts[1]);
// }
// });
// var JTooltips = new Tips($$('$selector'), $options);
//});");
|
Best regards.