SOLVED - Block only viewable if populated with at least one field?
Design and Skin Customization
Thanks @douglas!
That worked perfectly.
I renamed the example quota to Artists originally ( id=1 )
Below is my code for anyone else that needs it but it worked great. Love how this system works and the more i"m learning about it the more I love it!
{if $profile_quota_id == '1'}
<div class="block pbpbg">
<h3 class="pbpfont">BAND MEMBERS</h3><br/>
<div class="memspan">{if strlen($profile_voice) > 2}<span>Voice: </span>{$profile_voice}{/if}<br />
{if strlen($profile_guitar) > 2}<span>Guitar: </span>{$profile_guitar}{/if}<br />
{if strlen($profile_bass) > 2}<span>Bass: </span>{$profile_bass}{/if}<br />
{if strlen($profile_drums) > 2}<span>Drums: </span>{$profile_drums}{/if}<br />
{if strlen($profile_othermembers) > 2}<span>Others: </span>{$profile_othermembers}{/if}<br />
</div>
</div>
{/if}
updated by @madc: 12/09/13 07:24:59AM