Hey Guys,
I understand how to display all the user profile fields with this code:
<!-- BEGIN custom_fields -->
<!-- IF custom_fields.S_PROFILE_CONTACT -->
<!-- IF custom_fields.PROFILE_FIELD_CONTACT -->
<span class="profile-link"><a href="{custom_fields.PROFILE_FIELD_CONTACT}">{custom_fields.PROFILE_FIELD_CONTACT}</a></span>
<div class="float-divider"></div>
<!-- ELSE -->
<span class="profile-link">{custom_fields.PROFILE_FIELD_VALUE}</span>
<div class="float-divider"></div>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- END custom_fields -->
But what if I just want to display a single one like "Website" or "Facebook" URL? I cant figure out how to do this, can anyone provide some insight or point me in the right direction?