Main menu

Forum


× Help Forum English

[SOLVED] tooltip doesn't work

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 11 ans 11 mois #2270 par Lyr!C
Réponse de Lyr!C sur le sujet tooltip doesn't work
Please, try to find which extension is making conflict in order to know!

You have many extensions that are using jQuery, and some do it wrong, but if the arrows works and not the tooltip, that mean perhaps somthing else...

If some extensions are not in use on the website, uninstall them.

If you need JQuery Integrator to make JSN image working, that means you have a problem somewhere on your website.
So, you need to do a big check-up, to find what is wrong!

Good Luck ! ;)

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 11 ans 11 mois #2272 par Lyr!C
Réponse de Lyr!C sur le sujet tooltip doesn't work
Can you try to install the module attached, for test ?

I've added a function to select auto, yes or no, for jQuery loading from the module.

Thanks for your feedback to tell me if it works for you ! B)

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Pièces jointes :

Connexion ou Créer un compte pour participer à la conversation.

  • JoomlaBob
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 11 ans 11 mois #2290 par JoomlaBob
Réponse de JoomlaBob sur le sujet tooltip doesn't work
Thanks for the module! Unfortunately...nothing changes. I've tried the Yes- and the No-Option (and Auto).
This afternoon I uninstalled some (not used) plug-ins without result.

What I've noticed is that the digital clock modue (Date2 module) on the left stops ticking every time I open a page that includes an IC calendar module (i.e. from the Main Menu the menu items "Activiteiten", "Jeugd", "Recreatief" and "Prestatief"). On every other page the clock module just ticks! Maybe this can give you a clue? Many thanks for your time spent on this problem!

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 11 ans 11 mois #2295 par Lyr!C
Réponse de Lyr!C sur le sujet tooltip doesn't work
Install jQuery Easy : extensions.joomla.org/extensions/core-en...jquery-scripts/18327

Just activate it, and set jQuery (first line option)

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • JoomlaBob
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 11 ans 11 mois #2299 par JoomlaBob
Réponse de JoomlaBob sur le sujet tooltip doesn't work
I'm sorry, it doesn't help either... :(

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 11 ans 11 mois #2300 par Lyr!C
Réponse de Lyr!C sur le sujet tooltip doesn't work
So, it was working with 2.0.3 ?

There attached the module 2.0.3. If it still doesn't, that mean you have install, or change something between 2.0.3 and 2.0.4...

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Pièces jointes :

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 11 ans 11 mois #2301 par Lyr!C
Réponse de Lyr!C sur le sujet tooltip doesn't work
Try too by disable your plugin top of the page...

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • mistcaller
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 11 ans 11 mois #2365 par mistcaller
Réponse de mistcaller sur le sujet tooltip doesn't work
Hi!

I am not sure if it's related, but in mod_iccalendar.php (v.2.0.4) , lines 131-134, the Script Declaration strings should end with a semicolon. Now they don't.
//Add options var to iCtip.js
$document->addScriptDeclaration("var mouse = '$mouseover'");
$document->addScriptDeclaration("var icclasstip = '$icclasstip'");
$document->addScriptDeclaration("var icclass = '$icclass'");
$document->addScriptDeclaration("var posit = '$posit'");

This causes a js error (something like "'right' is not a function") if other modules have added their declarations, as you can see in the following case:
<script type="text/javascript">
var mouse = 'mouseover'
var icclasstip = '.iccalendar .icevent a'
var icclass = '.iccalendar'
var posit = 'right'
(function($){ // other module script
window.addEvent('domready',function(){ 
...



So I think it should be:
//Add options var to iCtip.js
$document->addScriptDeclaration("var mouse = '$mouseover';");
$document->addScriptDeclaration("var icclasstip = '$icclasstip';");
$document->addScriptDeclaration("var icclass = '$icclass';");
$document->addScriptDeclaration("var posit = '$posit';");

At least, it worked for me..

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 11 ans 11 mois #2366 par Lyr!C
Réponse de Lyr!C sur le sujet tooltip doesn't work
Oh!

Yes you must be right !

I will test it now... ;)

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 11 ans 11 mois #2368 par Lyr!C
Réponse de Lyr!C sur le sujet tooltip doesn't work
No, that doesn't work for Bob... :pinch:

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

Modérateurs: Lyr!C
Temps de génération de la page : 0.127 secondes

 

Follow Us

Créez vos templates Joomla avec Template Creator CK

acymailing logo new