• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Custom Field - URL Hyperlink?

ggace

New Member
Showcase
Within the custom fields option is an ability to allow links. This seems to just check if a link containts www or http. My expected result was to allow a custom field with a hyperlink.

is there any chance this field can be called as a hyperlink rather than plain text?

Thank you for your consideration!

Regards,
~Mike
 
Hi Mike,

You can do this yourself.

Set as a URL

options.PNG

Then set the Value Display to use some HTML to make it a clickable link

value_display.PNG

Code:
<a href="{$value}">{$value}</a>

Gives:
result.PNG
 
Back
Top