Log in

View Full Version : postbit legacy Error


Fluke667
02-06-2012, 10:17 PM
whats the error with this:


if ($vbulletin->userinfo['field14'] == 'YES')
{
&nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] class="reflect" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
}
else
{
&nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
}





This is my Full postbit_legacy:

http://pastebin.com/5wD7hgvE

Max Taxable
02-06-2012, 10:24 PM
What error does it produce? How about a link?

kh99
02-06-2012, 10:33 PM
whats the error with this:

Is that a template? You need to use

<if condition="$bbuserinfo[field14] == 'YES'"> ... <else /> ... </if>


That's assuming you want to check your field14. If you want to check the post author's field14 then you'd use $post[field14].

Fluke667
02-06-2012, 10:39 PM
Its this and i want my members to turn on/off this

https://vborg.vbsupport.ru/showthread.php?p=1471979

kh99
02-06-2012, 10:41 PM
That's kind of cool...anyway, yeah, use $bbuserinfo[field14] if members turn on/off what they see for everyone's avatar, or $post[field14] if they're controlling their own avatar for everyone else to see.