I have a user custom field that it a link and I want to make it be clckable in the user list (/u
). Link custom user field to external website shows how to do this in the user card and the user profile, but it doesn’t seem like there’s a way to change it on the user custom field display on the user page.
I tried this, but it’s not having any affect and api.modifyClass('model:user'
seems to fire only when the user card or profile are clicked.
Am I missing something obvious?
<script type='text/x-handlebars' data-template-name='/connectors/user-profile-public-fields/external-site-link'>
tlkjslkjesflkjesfkljesfklejfkjeflk lk lkj lkj lkj
<span class="user-profile-public-fields">lkjeflkejflkj3lkrj3lkjlkj
dfklj dsfkjdslfks df</span>
{{#if externalSiteLink}}
<span class="user-profile-public-fields">lkjs dfklj dsfkjdslfks df</span>
<h3 class="user-profile-public-fields">
<span class="user-field-name">{{externalSiteLink.name}}</span>:
<span class="user-field-value">{{{externalSiteLink.link}}}</span>
</h3>
{{/if}}
</script>