Quote:
Originally posted by Mithan
What I would like to see, is a hack that adds, in brackets () next to Private Messages, the number of PM's you have, when you get them, then goes away or clears after you reply to them. This would be very effective.
|
This is easy - if you've already installed the hack, simply open index.php and:
FIND:
Code:
$privtext = "<span id=\"jiggle0\" class=\"jc\">Private Messages</span>";
REPLACE WITH:
Code:
$privtext = "<span id=\"jiggle0\" class=\"jc\">Private Messages</span> ($unreadpm[messages])";
This will add the number of unread PMs you have next to "Private Messages" in brackets. However, the number of PMs will NOT jiggle!
To make the number of PMs jiggle along with "Private Messages":
FIND:
Code:
$privtext = "<span id=\"jiggle0\" class=\"jc\">Private Messages</span>";
REPLACE WITH:
Code:
$privtext = "<span id=\"jiggle0\" class=\"jc\">Private Messages ($unreadpm[messages])</span>";