Log in

View Full Version : Profile field only visible in one forum?


peterpigman
01-29-2008, 09:11 PM
I have added a profile field in postbit legacy but I only want it to show in one forum. What would I need to add to this code?


<div class="smallfont">
&nbsp;<br />
<if condition="$post['field10']"><b><font color="#FF0000"><big>
$post[field10]</big> </font> </b>
</if>

Lynne
01-29-2008, 10:05 PM
I think you can wrap a conditional around it:

<if condition="$thread[forumid] == xx">
your code here for forum xx
</if>

peterpigman
01-29-2008, 10:14 PM
I think you can wrap a conditional around it:

<if condition="$thread[forumid] == xx">
your code here for forum xx
</if>

Yeah that got it thanks.