Quote:
Originally Posted by Eclipsed830
Does anyone know if there is a way to include an if statement in the members profile to display timeslip info?
|
Definitely.. I put it in the postbit template.
here is my post with all the info filled in:
http://www.chicagosvt.com/forums/sho...&postcount=127
and here are examples of various stages of completed info:
http://www.chicagosvt.com/forums/sho...d.php3?t=23654
here's a snipet of my postbit template to get you started:
Code:
<if condition="$post['field50']">
<p >
<hr color="#000000" size="1" width="100%">
<div class="smallfont">
<if condition="$post['field50']"><b>Vehicle:</b> $post[field50]</if>
<if condition="$post['field51'] and $post['field51'] != '0.0'"><b>HP:</b> $post[field51]
</if>
<if condition="$post['field66'] and $post['field66'] != '0.0'"><b>TQ:</b> $post[field66]
</if>
<if condition="$post['field55'] and $post['field55'] != '0.00'"><b>1/4 Mile:</b> $post[field55]</if><if condition="$post['field56'] and $post['field56'] != '0.00'">@ $post[field56]
</if>
</div>
<hr color="#000000" size="1" width="100%">
</p>
</if>