Quote:
Originally Posted by TCE Killa
Can someone please correct this code for me in my template modification postbit legacy? Thanks...
PHP Code:
<if condition="$post[field27]"><span style="font-weight: bold; $post[field27]">$post[username]</b></if></span> <else /> $post[musername]</if></if> </if> </div>
Basically, that is somewhat for users to choose a bold username or not, the profile field is in a tick box option at the moment.
Thanks alot.
|
I would probably use do this:
PHP Code:
<if condition="$bbuserinfo[field27]"><span style="font-weight: bold;">$post[musername]</span>
<else />
$post[musername]</if></if>
</if>
</div>
Don't know what the other </if> closing tags are for, but this is probably how it should look.