My users' avatars won't show up. When I go to the src they are coming from such as
http://test.xtremecoastin.com/forum/image.php?=1.1 , I get no avatar. The title of the page says image.php (GIF Image, 1x1 pixels).
Quote:
Originally Posted by johnn
Anything on the PM issue? I get nothing when I get a new PM. I see it on my board, but not on my site's index page.
Quote:
Originally Posted by Omario24
I am having the same problem.
|
|
Try using this:
PHP Code:
echo "You have ";
if ($vbulletin->userinfo['pmunread'] == '0') {
echo "(<a href=\"".$forumpath."/private.php\">0</a>) new messages since your last visit.<br>";
} else {
echo "(<a href=\"".$forumpath."/private.php\">";
echo $vbulletin->userinfo['pmunread'];
echo "</a>) new messages since your last visit.</p>";
}
Hope that helps you.