View Full Version : Extremely simplified PM alert mod.
BLykMik
06-27-2005, 08:03 PM
I've seen a few different mods for making the PM give some sort of visual alert to the user, but I was hoping to add something much simpler and less intrusive.
What I'd like to be able to do is add 1 small .gif to the left of the word "Private Message" whenever there is an unread message. And clicking on that .gif should simply link you to the private message center the same way clicking on "Private Messages" does.
...that's it. :squareeyed: No blinking, or listing of who the messages are from, or direct linking to profiles or messages. I'm just looking for something that gives the user a slightly less subtle alert than the bold private message text.
I was going to try to modify a mod, but honestly I am not very good at coding.
Does anyone know how to do this?
Thanks!
edbri871
06-28-2005, 02:53 AM
Open the NAVBAR template and find this code:
<a href="private.php?$session[sessionurl]">$vbphrase[private_messages]</a>
And right before it add this code:
<if condition="$bbuserinfo['pmunread']"><img src="image1" alt="Unread PMs" /><else /><img src="image2" alt="No Unread PMs" /></if>
Replace "image1" with the url to the image for if they have a pm, and image 2 to the url if they don't have a PM. :)
edit: btw if you want it to just have an image for unread PMs and not for if there's none then use this:
<if condition="$bbuserinfo['pmunread']"><img src="image1" alt="Unread PMs" /></if>
BLykMik
06-28-2005, 04:35 AM
Hmmmm... I must be doing something wrong...
I've entered the following directly before the code you pasted above:
<tr><td class="thead">$vbphrase[miscellaneous]</td></tr>
<if condition="$show['pmstats']"><tr><td class="vbmenu_option"><if condition="$bbuserinfo['pmunread']"><img src="images/statusicon/pm_new.gif" alt="Unread PMs" /></if><a href="private.php?$session[sessionurl]">$vbphrase[private_messages]</a></td></tr></if>
Did I get something wrong? No icon on any template when there is an unread message.
tomshawk
06-28-2005, 06:02 AM
This is what I use
find
<if condition="$show['pmstats']"><br /><phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl]">$vbphrase[private_messages_nav]</phrase></if>
then place this after it
<if condition="$bbuserinfo[pmunread] == 0">
<img src="http://www.yourwebsite.com/forums/images/misc/pmoff.gif">
<else />
<img src="http://www.yourwebsite.com/forums/images/misc/pmon.gif">
</if>
Then just upload your images to the misc folder.
pmoff (https://vborg.vbsupport.ru/attachment.php?attachmentid=31360&stc=1)
pmon (https://vborg.vbsupport.ru/attachment.php?attachmentid=31361&stc=1)
the pmon is animated, so it gets your attention. ;)
mkdevo
06-28-2005, 10:49 AM
This is what I use
(snip)
nicely done! thanks!
BLykMik
06-28-2005, 03:12 PM
That works great Tomshawk... Thanks you very much!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.