Ich habe jedoch subsilver2 und wollte fragen, ob mir jemand die Mod umschreiben kann. Sind nur wenige Zeilen.
Öffne \prosilver\template\overall_header.html
Finde
Code: Alles auswählen
if ({S_NEW_PM})
{
window.open('{UA_POPUP_PM}', '_phpbbprivmsg', 'height=225,resizable=yes,width=400');
}
Code: Alles auswählen
if ({S_NEW_PM})
{
var answer = confirm("You have a new PM. Do you want to check your messages");
if (answer)
window.location ='{U_PRIVATEMSGS}';
answer = null;
}
Und bei mir sieht das Popup bei Pns + das Geburtstagspopup, das ich hinzugefügt habe, so aus:
Code: Alles auswählen
<!-- IF S_USER_PM_POPUP -->
if ({S_NEW_PM})
{
popup('{UA_POPUP_PM}', 400, 225, '_phpbbprivmsg');
}
<!-- ENDIF -->
<!-- IF S_BIRTHDAY_POPUP -->
popup('{UA_POPUP_BIRTHDAY}', 400, 225, '_phpbbbdpopup');
<!-- ENDIF -->