how to turn off the tooltip of menu items?

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon Jul 15, 2013 4:32 pm
Reply with quote
Report this post
Hi! Sorry for dilettantish question, how can I switch off the pop up tooltips, when mouse is over menu item, or to increase the time between mouse is over and tooltip is appears?
User avatar
Senior Boarder

GK User
Mon Jul 15, 2013 6:51 pm
Reply with quote
Report this post
Hi,
those tooltips are from title="..." so you can't delay them, but sure you can delete them from source code.

templates/gk_bikestore\lib\menu\GKBase.class.php

find all

Code: Select all
$title = "title=\"$tmpname\"";


Replace with

Code: Select all
$title = '';


I mean dubble '
User avatar
Platinum Boarder

GK User
Mon Jul 15, 2013 11:05 pm
Reply with quote
Report this post
Done. Works.Thank you for your quick response, Pawel!
User avatar
Senior Boarder


cron