Quote:
Originally Posted by PinkMilk
Code:
<if condition="$post['field11']"><div class="CommUserInfo">team : $post[field11]<if condition="$post['field12']"> , $post[field12]</if></div></if>
Would this not work?
|
You will still get the comma if field 11 is left blank. try this:
Code:
<if condition="$post['field11']"><div class="CommUserInfo">team : $post[field11] <if condition="$post['field11'] AND $post['field12']">, </if><if condition="$post['field12']">$post[field12]</if></div></if>
This will leave out the comma if only 1 field is selected, but show it, if both have a value.