*********One more thing. This one is important though*********
There is a mistake in the Facebook section of the MEMBERINFO text given in the zip. Here is what it reads with the issues in
BOLD:
Quote:
Facebook:
<if condition="$userinfo['fieldXX']">
<a href="http://www.facebook.com/$userinfo[fieldXX]"target="_blank"><img src="$stylevar[imgdir_misc]/facebook.gif"border="0"alt="View Member's FaceBook Profile"></a>
<a href="http://www.facebook.com/user/profile.php?id=$userinfo[fieldXX]"target="_blank">http://www.facebook.com/profile.php?id=$userinfo[fieldXX]</a>
<br />
</if>
|
Notice the difference in the links. 2 different URLs are created for the icon that displays in the postbit and the link that will show in the member's profile. Also.... the word "user" in the second URL has no place there at all... no need for it.
They should either both read "facebook.com/$userinfo[fieldXX]" which means the user would have to put "profile.php?id=1234567" in their profile field...
OR
They should both read "facebook.com/profile.php?id=$userinfo[fieldXX]" which means the user would have to put "1234567" in their profile.
I chose the second choice... less room for error for the user. Until those two URLs match, you will have an issue. In the member's profile, you'll have the icon sitting next to the link like it's supposed to. However, one will work, and one won't.
Here is my code now...
Quote:
<a href="http://www.facebook.com/profile.php?id=$userinfo[field14]"target="_blank"><img src="$stylevar[imgdir_misc]/facebook.gif"border="0"alt="View Member's FaceBook Profile"></a>
<a href="http://www.facebook.com/profile.php?id=$userinfo[field14]"target="_blank">http://www.facebook.com/profile.php?id=$userinfo[field14]</a>
|
Everything works perfectly now