Drae Active member Oct 3, 2012 #1 For custom fields, I've figured out how to make them show up below the avatar, and I have one at the moment that is specified to be a URL. Is it possible to have it so that it is actually a clickable link, and displays like this, "Field Name: Link"?
For custom fields, I've figured out how to make them show up below the avatar, and I have one at the moment that is specified to be a URL. Is it possible to have it so that it is actually a clickable link, and displays like this, "Field Name: Link"?
HenrikHansen Well-known member Oct 3, 2012 #2 http://xenforo.com/community/threads/custom-user-field-value-match-requirements-url.34105/ Upvote 0 Downvote
Jake Bunce Well-known member Oct 3, 2012 #3 Create a new user field: Admin CP -> Users -> Custom User Fields To create the link you need to specify the HTML: General Options: Value Display HTML For example: Code: <a href="{$value}">Link</a> Also, there is this option you need to enable: General Options: Viewable in message user info In addition, make sure this is enabled in your style: Admin CP -> Appearance -> Style Properties -> Message Elements -> Show custom user fields Now when a user enters a value into that field it will show the link in their posts. Upvote 0 Downvote
Create a new user field: Admin CP -> Users -> Custom User Fields To create the link you need to specify the HTML: General Options: Value Display HTML For example: Code: <a href="{$value}">Link</a> Also, there is this option you need to enable: General Options: Viewable in message user info In addition, make sure this is enabled in your style: Admin CP -> Appearance -> Style Properties -> Message Elements -> Show custom user fields Now when a user enters a value into that field it will show the link in their posts.