I think I've just about got this, but not quite.
I'm trying to style the address fields in the profile display and need an if statement so the bullet will not be shown if the user has not provided the information or it's marked as private.
Code:
<ul class="contact-icons">
[cb:if cb_phone="1"]<li class="phone">[cb:userfield field="cb_phone" /]</li>[/cb:if]
[cb:if cb_email="1"]<li class="email">[cb:userfield field="cb_email" /]</li>[/cb:if]
[cb:if cb_website="1"]<li class="web">[cb:userfield field="cb_website" /]</li>[/cb:if]
</ul>
EDIT: Fixed it!! It was the exclamation point
Code:
<ul class="contact-icons">
[cb:if cb_phone!=""]<li class="phone">[cb:userfield field="cb_phone" /]</li>[/cb:if]
[cb:if cb_email!=""]<li class="email">[cb:userfield field="cb_email" /]</li>[/cb:if]
[cb:if cb_website!=""]<li class="web">[cb:userfield field="cb_website" /]</li>[/cb:if]
</ul>
EDIT: Would it be better to add a string to the UL? (if phone or email or website then UL. Anyone know how to do that?
My immediate need is this issue, but I would LOVE to see clear documentation on how to use delimiters. Anyone have a link to all the possibilities?
If there isn't a comprehensive guide, post what you've got and I'll make one and post it up here.