cadman wrote:
QUOTE:
Can you tell me what I would need to remove?
I do not know PHP. Looked but could not find anything that I think may do it.
Thank You
1. find calls of function mosToolTip
2. in each of them add 7th parameter value of 0 (zero)
Example:
$content .= mosToolTip( $usertext, _BC_CHATLINK, $tooltip, "../../../components/com_blastchatc/images/online.png", "", $chatlink );
to this:
$content .= mosToolTip( $usertext, _BC_CHATLINK, $tooltip, "../../../components/com_blastchatc/images/online.png", "", $chatlink,
0 );
That 7th parameter in that function call is defining if clickable link is supposed to be created, by default it is set to 1, you set it to 0.