Log in

View Full Version : Can Someone Help Me With Coding


ChrisBaktis
07-24-2004, 11:34 PM
I have created a login box on my website. When someone is logged in it says 'Welcome [Username]'. When someone is logged in I would like it to also show the number of unread PMs the user has. I know this is a conditional but can someone please give me the code that will show this and also be clickable so the member can clik on it and be brought to his/her PM page?

Merjawy
07-25-2004, 02:53 AM
try this

<if condition="$show['pmstats']">$vbphrase[private_messages]: <a href="private.php?$session[sessionurl]">$vbphrase[unread]</a> <if condition="$bbuserinfo['pmunread']"><strong>$bbuserinfo[pmunread]</strong><else />$bbuserinfo[pmunread]</if>, $vbphrase[total] $bbuserinfo[pmtotal].</if>


this will show all Unread PMs and Total PM

ChrisBaktis
07-25-2004, 07:40 PM
Thanks - worked great!