XF 2.1 Add Custom Field Info To Profile Under Name

JDobbsy1987

Member
Hi,

Is it possible to shows custom field under the username on the profile page?

I would like to display 3 fields on 1 line

Ext. 111
DDI. 123456
Mob. 07800000000

Example:

Ext. 111 | DDI. 123456 | Mob. 07800000000

1565346256014.webp


Would also be nice to include it on the pop up profile too

1565346348867.webp

Cheers,
Jamie
 
Managed to sort this by adding the following to the "member_tooltip" template

Code:
                <xf:if is="{$user.Profile.custom_fields.profile_extno}">
                    Ext. {$user.Profile.custom_fields.profile_extno}
                </xf:if>

                <xf:if is="{$user.Profile.custom_fields.profile_mobno}">
                    Mob. {$user.Profile.custom_fields.profile_mobno}
                </xf:if>

If there is a better way please advise.

Cheers.
 
Back
Top Bottom