Quote:
Originally Posted by Lynne
Actually, if field11 is left blank, nothing will show because of the initial condition around the whole line.
|
Yep, I missed that. Here is the corrected code
Code:
<div class="CommUserInfo">team : <if condition="$post['field11']">$post[field11]</if><if condition="$post['field11'] AND $post['field12']">, </if><if condition="$post['field12']">$post[field12]</if></div>
If you want to hide the entire line if neither field has a value: (not tested, but it should work)
Code:
<if condition="$post['field11'] OR $post['field12']"><div class="CommUserInfo">team : <if condition="$post['field11']">$post[field11]</if><if condition="$post['field11'] AND $post['field12']">, </if><if condition="$post['field12']">$post[field12]</if></div></if>