Resource icon

Add pictures to member profile page based on user profile field selection

It can be achieved pretty easily.

Make the custom user field a single line text box that is user editable and use the following as the template edit:

<xen:if is="{$user.customFields.ProfileCover}">
<img src="{$user.customFields.ProfileCover}" style="width: 100%; height: auto;" />
</xen:if>

So if your users enter a url to the image, it'll show up there. We've set it up that way - http://orojackson.com/threads/how-to-add-your-own-profile-cover-image.1993/
 
Last edited:
Top Bottom