Zen maybe you can helps me a bit here. I want to exclude a fieldset form showing up is users have not defined two particular custom profile fields from showing. I tried the folowing but then it does not show these options even if they are filled out.:ermm: Where did I go wrong?
PHP Code:
<!-- START ZENDIVER FAVORITES -->
<if condition="$show['field10'] AND $show['field11']==1">
<fieldset class="fieldset">
<legend>$post[musername]'s Favorite
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="1">
<div>
<if condition="$post['field10']">Fav Promotion: $post[field10]
<if condition="$post['field11']">Fav Wrestler(s): $post[field11]
</div>
</table>
</fieldset>
</if>
<!-- / END ZENDIVER FAVORITE LEGEND -->