Darathor
Citation :
But : Ce MOD supprime la pop-up d'annonce de nouveaux messages privés (le choix dans le profil et l'affichage de la po-up sont supprimés mais le code interne la gérant n'est pas supprimé, ceci ne réduit donc en rien la consommation de ressources).
Auteur : Darathor (darathor@free.fr)
Version : 1.0 TEST - A (30/01/2006)
Compatibilité phpBB : 2.0.19
Dans "templates/subSilver/user_add_body.tpl" :
Code :
#
# Trouver et enlever
#
<tr>
<td class="row1"><span class="gen">{L_POPUP_ON_PRIVMSG}:</span><br /><span class="gensmall">{L_POPUP_ON_PRIVMSG_EXPLAIN}</span></td>
<td class="row2">
<input type="radio" name="popup_pm" value="1" {POPUP_PM_YES} />
<span class="gen">{L_YES}</span>
<input type="radio" name="popup_pm" value="0" {POPUP_PM_NO} />
<span class="gen">{L_NO}</span></td>
</tr>
Dans "templates/subSilver/overall_header.tpl" :
Code :
#
# Trouver et enlever
#
<!-- BEGIN switch_enable_pm_popup -->
<script type="text/javascript">
<!--
if ( {PRIVATE_MESSAGE_NEW_FLAG} )
{
window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');;
}
//-->
</script>
<!-- END switch_enable_pm_popup -->
Dans "templates/subSilver/admin/user_edit_body.tpl" :
Code :
#
# Trouver et enlever
#
<tr>
<td class="row1"><span class="gen">{L_POPUP_ON_PRIVMSG}</span></td>
<td class="row2">
<input type="radio" name="popup_pm" value="1" {POPUP_PM_YES} />
<span class="gen">{L_YES}</span>
<input type="radio" name="popup_pm" value="0" {POPUP_PM_NO} />
<span class="gen">{L_NO}</span></td>
</tr>