Ranger187 |
05-21-2008 05:47 PM |
Quote:
Originally Posted by VBDev
(Post 1526493)
Ok I put it in the issue list and will check that out... Must have been really tired when I tested it lol.
|
Don't know if this helps, but it's bugging the crap outta me that I can't sticky something... If I goto mgc_cb_evo_chatbit_menu in the Style Manager you see below, but in Usergroup, there is no option for the sticky, or anywhere in the admincp in the MGC area either.
Code:
<div class="vbmenu_popup" id="chat_$chat[chatid]_menu" style="z-index: 1; position: absolute; display: none;">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[mgc_cb_evo_actions]</td>
</tr>
<tr>
<td class="vbmenu_option" onmouseover="return hilite_chat_menu_item(this);" onmouseout="return unhilite_chat_menu_item(this);"><a href="member.php?$session[sessionurl]u=$user[userid]" rel="nofollow"><phrase 1="$user[raw_username]">$vbphrase[mgc_cb_evo_view_member_profile]</phrase></a></td>
</tr>
<if condition="$show['stickychat']">
<tr>
<if condition="$chat[sticky]">
<td class="vbmenu_option" onmouseover="hilite_chat_menu_item(this);" onmouseout="unhilite_chat_menu_item(this);" >
<a href="#mgc_cb_evo_top" rel="nofollow" onclick="return confirm_menu_action($chat[chatid],'$vbphrase[mgc_cb_evo_confirm_unsticky]','mgc_cb_evo_sticky_chat($chat[chatid],0)');">$vbphrase[mgc_cb_evo_unsticky_chat]</a>
</td>
<else />
<td class="vbmenu_option" onmouseover="hilite_chat_menu_item(this);" onmouseout="unhilite_chat_menu_item(this);" >
<a href="#mgc_cb_evo_top" rel="nofollow" onclick="return confirm_menu_action($chat[chatid],'$vbphrase[mgc_cb_evo_confirm_sticky]','mgc_cb_evo_sticky_chat($chat[chatid],1)');">$vbphrase[mgc_cb_evo_sticky_chat]</a>
</td>
</if>
</tr>
</if>
$commands_chatbit_menubit
</table>
</div>
|