If you mean mouse over titles that is not the setting for that. You need to edit following file and remove title from html creation.
File: \templates\gk_finance_business\lib\menu\GKBase.class.php
Line: 372 to 398 which is below
- Code: Select all
if ($tmpname) {
if ($tmp->type == 'separator') {
$data = '<a href="#" ' . $active . ' ' . $id . ' ' . $title . '>' . $txt . '</a>';
} else {
if ($tmp->url != null) {
switch ($tmp->browserNav) {
default:
case 0:
// _top
$data = '<a href="' . $tmp->url . '" ' . $active . ' ' . $id . ' ' . $title .
'>' . $txt . '</a>';
break;
case 1:
// _blank
$data = '<a href="' . $tmp->url . '" target="_blank" ' . $active . ' ' . $id .
' ' . $title . '>' . $txt . '</a>';
break;
case 2:
$data = '<a href="' . $tmp->url . '" target="_blank" ' . $active . ' ' . $id .
' ' . $title . '>' . $txt . '</a>';
break;
}
} else {
$data = '<a ' . $active . ' ' . $id . ' ' . $title . '>' . $txt . '</a>';
}
}
}
Replace with below
- Code: Select all
if ($tmpname) {
if ($tmp->type == 'separator') {
$data = '<a href="#" ' . $active . ' ' . $id . '>' . $txt . '</a>';
} else {
if ($tmp->url != null) {
switch ($tmp->browserNav) {
default:
case 0:
// _top
$data = '<a href="' . $tmp->url . '" ' . $active . ' ' . $id . '>' . $txt . '</a>';
break;
case 1:
// _blank
$data = '<a href="' . $tmp->url . '" target="_blank" ' . $active . ' ' . $id .
'>' . $txt . '</a>';
break;
case 2:
$data = '<a href="' . $tmp->url . '" target="_blank" ' . $active . ' ' . $id .
'>' . $txt . '</a>';
break;
}
} else {
$data = '<a ' . $active . ' ' . $id . '>' . $txt . '</a>';
}
}
}
See you around...