kornikopic
Admin
 Admin
| Posts: 661 |   | Karma: 11
|
Re:adding list description to subscriber module - 2008/07/07 18:35
Hello Terry,
You can do it by replacing the function toolTip(...) (from the line 49 till 59) of the file compa.php (<joomla>/administrator/components/com_acajoom/) :
| Code: | function toolTip($tooltip, $title='', $width='', $image='tooltip.png', $text='', $href='', $link=1){
if(compa::joom10()){
if ( $GLOBALS[ACA.'use_sef'] AND function_exists('sefRelToAbs') ) $href = sefRelToAbs($href);
return mosToolTip( addslashes($tooltip), addslashes($title), $width, $image, $text, $href, $link);
}else{
if(preg_match("/#/",$href)){
$href = null;
}
return JHTML::_('tooltip', $tooltip, $title, $image, $text, $href, $link);
}
}
|
By :
| Code: | function toolTip($tooltip, $title='', $width='', $image='tooltip.png', $text='', $href='', $link=1){
$html = '<a href="' . $href . '">' . $title . '</a>';
if (!empty($tooltip)) $html .= '<br /><span>' . $tooltip . '</span>';
return $html;
}
|
Post edited by: kornikopic, at: 2008/07/07 18:36
*** Please, read our official documentation before posting. Thank you ***
Best regards, Jonathan |
|
|
| | To post on the forum you need to sign in. |