
12-28-2008, 06:57 AM
|
 |
|
|
Join Date: Jan 2004
Location: France
Posts: 2,570
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by bodaudinh
Go to Admin CP ==> Style & Templates ==> Search in Templates.
Search: chats_remove ( in mgc_cb_evo_archives)
==// Cut the found code below ====================
Code:
<if condition="$show['delete_column']">
<form name="chats_remove" method="post" action="mgc_cb_evo.php">
<input type="hidden" name="do" value="inline_remove_chats" />
<input type="hidden" name="securitytoken" value="{$vbulletin->userinfo[securitytoken]}" />
</if>
===========================================
Just in there:
Code:
<!-- / Javascript popups -->
===> paste in there!
<!-- Chats -->
The result:
Code:
<!-- / Javascript popups -->
<if condition="$show['delete_column']">
<form name="chats_remove" method="post" action="mgc_cb_evo.php">
<input type="hidden" name="do" value="inline_remove_chats" />
<input type="hidden" name="securitytoken" value="{$vbulletin->userinfo[securitytoken]}" />
</if>
<!-- Chats -->
|
Quote:
Originally Posted by bodaudinh
Just add <input type="checkbox" name="allbox" id="allbox" title="Check All" onclick="js_check_all(this.form);" /><label for="allbox"></label> in mgc_cb_evo_archives
Code:
<!-- Chats -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" width="0" align="center" valign="middle"> </td>
<if condition="$vbulletin->options['mgc_cb_evo_avatar_on']">
<td class="thead" width="0" align="center" valign="middle"> </td>
</if>
<td class="thead" width="0" nowrap="nowrap" align="center" valign="middle">$vbphrase[date]</td>
<td class="thead" width="0" nowrap="nowrap" align="$stylevar[left]" valign="middle">$vbphrase[username]</td>
<td class="thead" valign="middle" width="100%" nowrap="nowrap" align="$stylevar[left]">$vbphrase[mgc_cb_evo_chat]</td>
<if condition="$show['delete_column']">
<td class="thead" valign="middle" width="0" nowrap="nowrap" align="center">
<input type="checkbox" name="allbox" id="allbox" title="Check All" onclick="js_check_all(this.form);" /><label for="allbox"></label>
</td>
</if>
</tr>
|
Thanks for the fix
|