Page 1 of 1

Tooltips Index Page - switch off?

Posted: 2018-04-29 11:18
by ronwill
I there easy way to stop tooltips on hover on main table headers, index page?
I have a few menu items displaying lot of text and tooltip is annoying, gets in the way.

Cheers, Ron

Re: Tooltips Index Page - switch off?

Posted: 2018-05-01 20:59
by pbottcher
Hi Ronwill,

where do you have tooltips? I can't see them. Maybe you can post a screenshot.

Re: Tooltips Index Page - switch off?

Posted: 2018-05-02 23:23
by R Tammam
Hello pböttcher ,
check the following link for more visualization of tool tips
https://www.screencast.com/t/D0f1GIzjdj

Re: Tooltips Index Page - switch off?

Posted: 2018-05-02 23:31
by R Tammam
Hello ronwill,
if you inspected the table button you will find a title attribute with the tooltip
and here's an example
https://www.screencast.com/t/NTPKGWFwkZ48
so to stop them using javascript in footer extras
you should select the button , and remove the title attribute using .removeAttr() function
for more about .removeAttr() function please check this link https://api.jquery.com/removeAttr/

Re: Tooltips Index Page - switch off?

Posted: 2018-05-03 03:37
by ronwill
Hi Tammam,
Thks for that and showing me where to look. I'll give it a go, meanwhile I found by removing the word Description (on line starting: <a class="btn btn-block btn-lg <?php) so that - (strip_tags($tc['Description']))) is now (strip_tags($tc['']))) it has the desired effect of not showing tool tips on the home page menu buttons. To stop homp.php being overwritten I set it as read only, if I make other changes that might impact home.php I just remove read only, publish & compare file against copy I save in other directory, adjust and reset read only.
Cheers, Ron

Re: Tooltips Index Page - switch off?

Posted: 2018-05-05 22:19
by R Tammam
Well done ronwill