Quote:
Originally Posted by Sweeks
Great thank you so much!!!
I now need the reverse of the first one lol
So I would have basically if it isnt your own profile show $mysecondvariable on this users profile who isnt my own profile if you get me. I hope this is possible
Thanks so much.
|
Quote:
Originally Posted by EnIgMa1234
Code:
<if condition="$bbuserinfo[userid] !== $prepared[userid]">
<div>
$mysecondvariable
</div>
</if>
|
Or just add an else to the first one:
Code:
<if condition="$bbuserinfo[userid] == $prepared[userid]">
<div>
$variable here
</div>
<else />
<div>
$mysecondvariable
</div>
</if>