I have added a profile field that displays fine in the postbit with this code:
PHP Code:
<if condition="$post['field7']"><b><font size="1" color="#0099FF">-{
<a target="_blank" href="http://www.guitars101.com/jamroom/bands/$post[field7]/">
<font color="#0099FF">Artist Page</font></a> }-</font></b>
Now, what I would like it to do is display a little cd image next to the username of those who have this field filled out in the Currently Active Users on the forumhome. So I have tried a couple of variations to the forumhome_loggedinuser template with no luck. I am wondering if it's even picking up on $post['field7'] i.e.
PHP Code:
<a href="member.php?$session[sessionurl]u=$loggedin[userid]">$loggedin[musername]</a>$loggedin[invisiblemark]$loggedin[buddymark]
<if condition="$post['field7']">
<if condition="$bbuserinfo[userid]!=$loggedin[userid]">
<a href="http://www.guitars101.com/jamroom/bands/$post[field7]">
<img border="0" src="http://www.guitars101/images/cd1.gif" width="16" height="16"></a>
</if>
</if>
Any ideas of how I might get this to work?