Page 1 of 1

Remove tooltip of required input fields in Contact Component

Posted: Wed Oct 26, 2011 6:50 am
by waleedshah
I am using joomla Contact Component in my site. On form validation tooltip appears on required fields. Can anyone please help me how can i remove or disable such tooltip for input fields.
i am unable to get relevant js code which appends such tooltip on required fields of form.

Re: Remove tooltip of required input fields in Contact Compo

Posted: Sat Feb 04, 2012 8:01 am
by harisk73
I dont know that this is the "right" way to do this but it worked for me.

edit "default_form.php" in components-->com_contact -->views->contact->tmpl

Line 12 comment out (or delete) JHtml::_('behavior.tooltip');

Anyone with a better idea?

Re: Remove tooltip of required input fields in Contact Compo

Posted: Thu Apr 19, 2012 3:45 pm
by nils99
hi,
the easiest way is to go to the template and to edit the tooltip like this:
(Editing file "css/personal.css" in template "beez_20")

.tip
{
display:none;
}

it worked like charm for me, the whole tooltip is gone!
:pop

Re: Remove tooltip of required input fields in Contact Compo

Posted: Fri Mar 22, 2013 8:20 pm
by jwtorg
harisk73 wrote:I dont know that this is the "right" way to do this but it worked for me.

edit "default_form.php" in components-->com_contact -->views->contact->tmpl

Line 12 comment out (or delete) JHtml::_('behavior.tooltip');

Anyone with a better idea?
Many thanks !! It is same problems I have so I tried what you said... it work !!! thanks !
BRAVO ! :p

Re: Remove tooltip of required input fields in Contact Compo

Posted: Sat Aug 24, 2013 4:49 am
by sofitek
I found an another solution against tooltip for J3.+ (contact form and subscribe):

replace in media/jui/js/bootstrap.min.js

from

Code: Select all

[this.options.html?"html":"text"]
to

Code: Select all

[this.options.html?"":""]
You can also try boosterstrap.js (for me it was bootstrap.min.js).

Sofia

Re: Remove tooltip of required input fields in Contact Compo

Posted: Thu Oct 24, 2013 10:25 pm
by jlabs123
sofitek, that totally worked, my template with new bootstrap functionality was making my contact form act stupid.

Thank you,

Re: Remove tooltip of required input fields in Contact Compo

Posted: Wed Oct 30, 2013 1:24 pm
by Jasminius
Than U so much for this tip sofitek :)

Re: Remove tooltip of required input fields in Contact Compo

Posted: Tue Dec 10, 2013 4:09 pm
by Cleanshooter
sofitek wrote:I found an another solution against tooltip for J3.+ (contact form and subscribe):

replace in media/jui/js/bootstrap.min.js

from

Code: Select all

[this.options.html?"html":"text"]
to

Code: Select all

[this.options.html?"":""]
You can also try boosterstrap.js (for me it was bootstrap.min.js).

Sofia
This answer is the best one for J3

Re: Remove tooltip of required input fields in Contact Compo

Posted: Mon Dec 23, 2013 4:16 pm
by Z3RatuL
Cleanshooter wrote:
sofitek wrote:I found an another solution against tooltip for J3.+ (contact form and subscribe):

replace in media/jui/js/bootstrap.min.js

from

Code: Select all

[this.options.html?"html":"text"]
to

Code: Select all

[this.options.html?"":""]
You can also try boosterstrap.js (for me it was bootstrap.min.js).

Sofia
This answer is the best one for J3
Yeah but doing an inspect element in Chrome we get erros:

Uncaught TypeError: Object [object Object] has no method ''. User doesn't get an error, but I guess maybe a better option to disable tooltips is at someone's mind?

Re: Remove tooltip of required input fields in Contact Compo

Posted: Mon Jan 13, 2014 8:41 pm
by Alex_cs_gsp
How about the following solution:

Code: Select all

.tooltip
{
	font-size:0px;
}
;)

Re: Remove tooltip of required input fields in Contact Compo

Posted: Mon May 19, 2014 10:23 am
by DrNio
Hi,

I want to hide all tooltips in my website. I am using Joomla 3.2.3 and Hikashop. In the Registration form http://moodleshop.wideservices.gr/en/co ... gistration if you hover you will see it. I tried all the mentioned ways and nothing has changed. Any ideas?

--

edit: Ι also has this tooltip enabled in Hikashop "http://moodleshop.wideservices.gr/en/o- ... -mou/order"

Thanks in advance


----

Solution for me :

ui-tooltip{display:none !important;}

Re: Remove tooltip of required input fields in Contact Compo

Posted: Tue Jun 17, 2014 8:31 pm
by dmcblue
From looking at the bootstrap code you all adjusted and testing, I found an answer that works for me:
Add to CSS:
<style>
.tooltip-inner{display:none;}
</style>

This worked for me, at least with the Calendar widget (Joomla 3.3.1)

Re: Remove tooltip of required input fields in Contact Compo

Posted: Sat Sep 13, 2014 9:22 pm
by Qbik
great it works but what about small triangle which show up on hover?
any idea?

ok i just solve this You have to hide one more class="tooltip-arrow"

Re: Remove tooltip of required input fields in Contact Compo

Posted: Fri Feb 27, 2015 12:38 pm
by mamboline
The above solutions doesn't work in latest Joomla 3.4

This worked for me though:

.ui-tooltip {
display:none;
}

BTW, I don't know why Joomla core team insists that much on Bootstrap, especially in front-end. Bootstrap is framework mostly for back-ends.

Guys are you trying to make Bootstrap necessary for all Joomla sites??? This is not the good way to go and I am really concerned about future of Joomla.

Please make Bootstrap optional, not mandatory, especially in front-end.

Re: Remove tooltip of required input fields in Contact Component

Posted: Wed Feb 14, 2018 10:42 am
by Maika_2
Hello,
We have the same problem. We use joomla 3.8.5. I tried a lot of solutions found on the internet but without success.
Finaly it's work with:

Code: Select all

.popover.right
 {
        display: none!important;}
This css code inside my template